C# 移动设备 Windows Mobile 6 Enter 键不起作用

发布于 2024-11-04 12:31:13 字数 158 浏览 0 评论 0原文

大家好 我的移动设备有问题。我的表单上有一个文本框,我为 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 技术交流群。

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

发布评论

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

评论(1

埋葬我深情 2024-11-11 12:31:55

我具有与您相同的功能,并且您发布的代码对我来说效果很好,只需调试它并查看正在启动哪个关键代码,我想您将该事件与控件的 KeyDown 事件相关联。

textBox1.KeyDown += new KeyEventHandler(this.YourEvent);

希望这对你有用。

再见。

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.

textBox1.KeyDown += new KeyEventHandler(this.YourEvent);

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

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