屠宰场客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
858 B

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using BO.Utils;
namespace TrunksIousOutInStore
{
public partial class TrunksIousOutInStoreForm : Form,IAfterLogin
{
public TrunksIousOutInStoreForm()
{
InitializeComponent();
}
private void TrunksIousOutInStoreForm_KeyUp(object sender, KeyEventArgs e)
{
switch (e.KeyData)
{
case Keys.S:
break;
case Keys.E:
break;
default:
richTextBox1.Text += (char)e.KeyValue;
break;
}
}
public string RoleName {
get { return "胴体白条出入库"; }
}
public Form Generate()
{
return this;
}
}
}