求大神帮助,如何控制TextBox,不允许键盘输入,只能输入读卡器读到的数据.
e.handles=true这个没法用,键盘无法输入了但读卡器读出的数据也无法输入.
ReadOnly= true 和上面一样.
用特殊字符判断这种方法不太现实,卡内数据是出厂时已经写好的无法改变.
有没有大神知道其他的方法.
小弟在这谢谢了.
vb.net?TextBox?
[解决办法]
这样试试,
private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
e.KeyChar = (char)Keys.None;
// e.Handled = true;
}