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;
|
|
}
|
|
}
|
|
}
|