C# 移动设备 Windows Mobile 6 Enter 键不起作用
大家好 我的移动设备有问题。我的表单上有一个文本框,我为 key_down 事件编写了代码
if(e.KeyKode==Keys.Enter)
{
//
//
}
,但我的移动设备未按 Enter 键。我该如何制作?
Hi All
I have a problem with my mobile device. I have a textbox on my form and i write a code for key_down event
if(e.KeyKode==Keys.Enter)
{
//
//
}
but My mobile device not press the enter key.How can i make?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我具有与您相同的功能,并且您发布的代码对我来说效果很好,只需调试它并查看正在启动哪个关键代码,我想您将该事件与控件的 KeyDown 事件相关联。
希望这对你有用。
再见。
PS:如果您有更多代码向我们展示,我们可以更准确地寻找解决方案
I have the same functionality as you, and the code you post works fine for me, just Debug it and look which key code is launching, I supose you're associating the event to the KeyDown event of your control.
Hope this works for you.
See you.
PS: If you had some more code to show to us, we could look for the solution mor precissely