我的条形码阅读器是HID类型并使用 USB。
我可以在文本框成为焦点时获取数据并执行一些业务逻辑。
private void Form1_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyValue == (char)Keys.Return)
{
e.Handled = true;
int barcodeLength = textBox1.TextLength;
textBox1.Select(0, barcodeLength);
queryData(textBox1.Text);
}
}
在我谷歌之后,我找到了这篇文章并尝试在我的应用程序中实现。但是现在的问题是,返回的值是双字符。如果字符串是 F1234,它将返回 FF11223344 等等。
这里的代码
DateTime _lastKeystroke = new DateTime(0);
List<char> _barcode = new List<char>(10);
public Form1()
{
InitializeComponent();
this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Form1_KeyPress);
}
private void Form1_KeyPress(object sender, KeyPressEventArgs e)
{
// check timing (keystrokes within 100 ms)
TimeSpan elapsed = (DateTime.Now - _lastKeystroke);
if (elapsed.TotalMilliseconds > 100)
_barcode.Clear();
// record keystroke & timestamp
_barcode.Add(e.KeyChar);
_lastKeystroke = DateTime.Now;
// process barcode
if (e.KeyChar == 13 && _barcode.Count > 0)
{
string msg = new String(_barcode.ToArray());
queryData(msg);
_barcode.Clear();
}
}
需要建议来解决我的问题