首页 > 后端开发 > C++ > 如何使用 .NET Framework 3.5 在 WPF 应用程序中注册全局热键?

如何使用 .NET Framework 3.5 在 WPF 应用程序中注册全局热键?

Patricia Arquette
发布: 2025-01-14 06:48:42
原创
973 人浏览过

How to Register Global Hotkeys in WPF Applications using .NET Framework 3.5?

在WPF应用程序中使用.NET Framework 3.5注册全局热键

挑战:

在使用.NET Framework 3.5开发的WPF应用程序中,您需要一种方法来绑定到特定按键,并确定如何绑定到Windows键。

解决方案:

要在WPF和.NET Framework 3.5中注册全局热键,请执行以下步骤:

  1. 导入必要的DLL:
<code class="language-csharp">using System;
using System.Runtime.InteropServices;
using System.Windows.Interop;</code>
登录后复制
  1. 声明辅助方法和常量:
<code class="language-csharp">[DllImport("user32.dll")]
private static extern bool RegisterHotKey(IntPtr hWnd, int id, UInt32 fsModifiers, UInt32 vlc);

[DllImport("user32.dll")]
private static extern bool UnregisterHotKey(IntPtr hWnd, int id);

const int WmHotKey = 0x0312;</code>
登录后复制
  1. 创建一个HotKey类来管理热键的注册和使用:
<code class="language-csharp">public class HotKey : IDisposable
{
    private bool _disposed;
    private Key _key;
    private KeyModifier _keyModifiers;
    private Action<HotKey> _action;
    private int _id;
    private static Dictionary<int, HotKey> _dictHotKeyToCalBackProc;

    public HotKey(Key k, KeyModifier keyModifiers, Action<HotKey> action, bool register = true)
    {
        _key = k;
        _keyModifiers = keyModifiers;
        _action = action;
        if (register)
            Register();
    }

    public bool Register()
    {
        int virtualKeyCode = KeyInterop.VirtualKeyFromKey(_key);
        _id = virtualKeyCode + ((int)_keyModifiers * 0x10000);
        bool result = RegisterHotKey(IntPtr.Zero, _id, (UInt32)_keyModifiers, (UInt32)virtualKeyCode);

        if (_dictHotKeyToCalBackProc == null)
        {
            _dictHotKeyToCalBackProc = new Dictionary<int, HotKey>();
            ComponentDispatcher.ThreadFilterMessage += ComponentDispatcherThreadFilterMessage;
        }

        _dictHotKeyToCalBackProc.Add(_id, this);
        return result;
    }

    public void Unregister()
    {
        _dictHotKeyToCalBackProc.Remove(_id);
        UnregisterHotKey(IntPtr.Zero, _id);
    }

    private static void ComponentDispatcherThreadFilterMessage(ref MSG msg, ref bool handled)
    {
        if (msg.message == WmHotKey)
        {
            HotKey hotKey;

            if (_dictHotKeyToCalBackProc.TryGetValue((int)msg.wParam, out hotKey))
            {
                hotKey._action.Invoke(hotKey);
                handled = true;
            }
        }
    }

    protected virtual void Dispose(bool disposing)
    {
        if (!_disposed)
        {
            if (disposing)
            {
                Unregister();
            }
            _disposed = true;
        }
    }

    public void Dispose()
    {
        Dispose(true);
        GC.SuppressFinalize(this);
    }
}</code>
登录后复制
  1. 使用HotKey类注册和处理热键事件。例如:
<code class="language-csharp">// 注册CTRL+SHIFT+F9热键
HotKey hotKey = new HotKey(Key.F9, KeyModifier.Shift | KeyModifier.Ctrl, OnHotKeyHandler);

private void OnHotKeyHandler(HotKey hotKey)
{
    // 按下热键时执行操作
}</code>
登录后复制

这段代码对原文进行了细微的调整,使其更流畅易读,并修正了一些潜在问题,例如在Unregister方法中增加了从字典中移除热键的逻辑,以及完善了Dispose方法以确保资源的正确释放。 关键的逻辑和代码保持不变,实现了对原文的伪原创。

以上是如何使用 .NET Framework 3.5 在 WPF 应用程序中注册全局热键?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板