停止将文本写入屏幕

发布于 2024-12-17 09:03:43 字数 278 浏览 0 评论 0原文

我有一个例程,我使用键盘以与手机上的短信功能相同的方式将文本写入屏幕(多次击键以循环字母),这要归功于 这个问题对我有帮助。

我现在遇到的问题是,数字也会与字母一起打印(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

好久不见√ 2024-12-24 09:03:43

根据您引用的问题,您可能正在订阅 KeyPress 事件。在该事件中将 e.Handled 标志设置为 true

Based on the question you referenced you are probably subscribing to the KeyPress event. Set the e.Handled flag to true in that event.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文