停止将文本写入屏幕
我有一个例程,我使用键盘以与手机上的短信功能相同的方式将文本写入屏幕(多次击键以循环字母),这要归功于 这个问题对我有帮助。
我现在遇到的问题是,数字也会与字母一起打印(1 代表 abc,2 代表 def...等)
如何在保留我自己的功能的同时禁用该键的原始按键功能?
非常感谢
I have a routine whereby I use the keypad to write text to the screen in the same manner as the sms functionality on a mobile phone (multiple key strokes to loop through letters) thanks to an answer on this question for helping me.
The problem I have now is that the number also gets printed alongside the letter (1's for abc, 2's for def...etc)
How can I disable the key's original keypress function whilst maintaining my own?
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您引用的问题,您可能正在订阅
KeyPress
事件。在该事件中将e.Handled
标志设置为 true。Based on the question you referenced you are probably subscribing to the
KeyPress
event. Set thee.Handled
flag to true in that event.