>백엔드 개발 >C++ >.NET Framework 3.5를 사용하여 WPF 응용 프로그램에 전역 단축키를 등록하는 방법은 무엇입니까?

.NET Framework 3.5를 사용하여 WPF 응용 프로그램에 전역 단축키를 등록하는 방법은 무엇입니까?

Patricia Arquette
Patricia Arquette원래의
2025-01-14 06:48:42931검색

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

.NET Framework 3.5를 사용하여 WPF 애플리케이션에 전역 단축키 등록

도전:

.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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.