在 C# 中设置应用程序范围的热键

发布于 2024-10-06 22:17:16 字数 194 浏览 5 评论 0原文

有一篇文章在C#中设置系统范围的全局热键 此处

我想设置应用程序范围的热键,以便如果用户在应用程序的任何子窗口上按下热键,特定窗口将接收并处理它。

谢谢。

There is a post to set system-wide global hotkey in C#
here

I want to set application-wide hotkey such that if user presses a hotkey on any child window of an application, a particular window will receive and process it.

Thanks.

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

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

发布评论

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

评论(1

乄_柒ぐ汐 2024-10-13 22:17:16

您可以为应用程序创建一个基本表单,并将 keypreview 属性设置为 true 并处理 keydown 事件,以便所有表单都具有相同的键定义。

您还可以使用以下例程为表单注册热键,但在此方法中,您需要在每个表单的加载事件上调用相同的方法。

protected override bool ProcessCmdKey(ref Message message, Keys keys)
{
    switch (keys)
    {
        case Keys.F2 | Keys.Control:
            //Process action here.
            return false;
    }

    return false;
}

您还可以使用 user32.dll 中的以下非托管方法,但我当然不会建议这样做。

static extern bool RegisterHotKey(IntPtr hWnd, int id, uint fsModifiers, uint virtualKey);
private static extern bool UnregisterHotKey(IntPtr hWnd, int id);

You can create a base form for your application and set keypreview property to true and handle keydown event so all your forms will have the same key definition.

You also can use the following routine to register a hotkey for your forms but in this method, you will require to call same method on load event of each form.

protected override bool ProcessCmdKey(ref Message message, Keys keys)
{
    switch (keys)
    {
        case Keys.F2 | Keys.Control:
            //Process action here.
            return false;
    }

    return false;
}

You also can use the following unmanaged methods from user32.dll but of course i would not suggest that.

static extern bool RegisterHotKey(IntPtr hWnd, int id, uint fsModifiers, uint virtualKey);
private static extern bool UnregisterHotKey(IntPtr hWnd, int id);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文