我可以使用 Ctrl- 作为 Winforms 菜单项中的热键吗?

发布于 2024-11-30 19:56:51 字数 82 浏览 1 评论 0原文

当我打开快捷键菜单时,逗号不存在。 Oemcomma 就在那里,而且很有效。但是当你的菜单项说热键是“Ctrl+Oemcomma”时,这就非常难看了。

When I open the ShortcutKeys menu, comma is not there. Oemcomma is there, and it works. But when your menu item says the hotkey is "Ctrl+Oemcomma" that's pretty ugly.

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

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

发布评论

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

评论(1

风铃鹿 2024-12-07 19:56:51

没有什么是你用一小段代码解决不了的:

    public Form1() {
        InitializeComponent();
        fooToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+,";
    }

Nothing you can't fix with a wee bit of code:

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