我知道这已被问了数百次,但我一直无法找到对我有帮助的解决方案。我正在使用条形码扫描仪,我希望能够获取仅使用 keydown 事件键入的键。出于某种原因,我不能同时使用 keydown 和 keypress 事件(我的 keypress 事件不会运行)。
我需要能够获取字符,包括连字符、大写字母和点,还需要检测回车键。
这些是我的听众:
form.KeyDown += new KeyEventHandler(Input_KeyDown);
form.KeyPress += new KeyPressEventHandler(Input_KeyPress);
这些是我的方法:
private void TimedOut(object sender, EventArgs e)
{
_barcode = "";
}
private void Input_KeyDown(object sender, KeyEventArgs e)
{
_timer.Stop();
_timer.Start();
if (e.KeyData == Keys.Enter)
{
if (!_barcode.Equals(""))
{
this.BarcodeScanned(_barcode, new EventArgs());
}
}
else
{
}
}
private void Input_KeyPress(object sender, KeyPressEventArgs e)
{
_timer.Stop();
_timer.Start();
_barcode += e.KeyChar;
}