发表时间:2007年3月5日 8时47分 | ||||
| ||||
textBox的KeyPress事件中
if(e.KeyChar == '+') { SendKeys.Send("A"); e.Handled = true; } |
怎样把键盘输入的‘+’符号变成‘A’?

发表时间:2007年3月5日 8时47分 | ||||
| ||||
textBox的KeyPress事件中
if(e.KeyChar == '+') { SendKeys.Send("A"); e.Handled = true; } |