如何防止 .NET 应用程序中出现 Alt 代码?

发布于 2024-09-29 23:47:57 字数 287 浏览 3 评论 0原文

我有一个 .NET 应用程序,其中带有使用数字助记符的按钮。 (例如“&1 - 检查”和“&2 - 现金”)当我按 Alt+1 时,我希望单击“检查”按钮。当我使用键盘上的标准数字键时,这有效。但是,当我使用数字键盘按 Alt+1 时,Windows 会接管并插入与 1 的“alt 代码”相匹配的符号。请参阅 http://alt-codes.org/list/。 如何防止我的应用程序中发生这种情况?

谢谢!

I have a .NET app with buttons which use numbers for mnemonics. (e.g. "&1 - Check" and "&2 - Cash") When I hit Alt+1, I expect the Check button to be clicked. This works when I use the standard number keys on a keyboard. However, when I hit Alt+1 using the number pad, Windows takes over and inserts the symbol that matches the "alt code" of 1. See http://alt-codes.org/list/.
How can I prevent this from happening in my application?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

心安伴我暖 2024-10-06 23:47:57

这可以通过在表单上启用 KeyPreview 并处理 KeyUp 事件来完成。
以下代码绕过 Windows alt 代码功能,并导致当我按 Alt+NumPad1 时单击按钮:

if (e.Alt && e.KeyCode == Keys.NumPad1)
{
     e.Handled = true;
     button1.PerformClick();
}

This can be done by enabling KeyPreview on the form and handling the KeyUp event.
The following code bypasses the Windows alt codes functionality and causes the button to click when I hit Alt+NumPad1:

if (e.Alt && e.KeyCode == Keys.NumPad1)
{
     e.Handled = true;
     button1.PerformClick();
}
暗藏城府 2024-10-06 23:47:57

这个 Alt+numkey 组合是 Windows 功能(非常有用),你无法绕过它。
我不久前在开发游戏时尝试过这个(你知道...技能栏快捷方式?☺)并且我做了一些研究...这是不可能的。
我也很高兴看到解决这个问题的方法!

This Alt+numkey combination is a Windows feature (very useful), you cannot bypass it.
I have tried this a while ago while working on a game (you know... skills bar shortcuts? ☺) and I have done some research... It is impossible.
I'd be very happy to see a way over this, too!

久隐师 2024-10-06 23:47:57

一种可能的方法是使用 键盘挂钩,拦截按键,然后按照您认为合适的方式执行操作。现在,它能否解决上述问题,并阻止操作系统插入字符代码,我不知道。

A possible way to do this would be to use keyboard hooks, intercept the keypresses, and then act as you see fit. Now, will it solve the above problem, and stop the OS from inserting the charcode, I dont know.

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