Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
大家好,我的移动设备有问题。我的表单上有一个文本框,我为 key_down 事件编写了代码
if(e.KeyKode==Keys.Enter) { // // }
但是我的移动设备没有按回车键。我该怎么做?
我具有与您相同的功能,并且您发布的代码对我来说很好,只需调试它并查看正在启动的关键代码,我假设您将事件与控件的 KeyDown 事件相关联。
textBox1.KeyDown += new KeyEventHandler(this.YourEvent);
希望这对你有用。
再见。
PS:如果您有更多代码向我们展示,我们可以更精确地寻找解决方案