91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

?C#怎么注冊多個全局熱鍵

?C#
小億
99
2023-10-23 09:51:51
欄目: 編程語言

要在C#中注冊多個全局熱鍵,可以使用Windows API中的RegisterHotKey函數。以下是一個示例代碼,演示如何在C#中注冊多個全局熱鍵:

using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;

public class HotKeyManager
{
    // 導入Windows API中的RegisterHotKey函數
    [DllImport("user32.dll")]
    private static extern bool RegisterHotKey(IntPtr hWnd, int id, int fsModifiers, int vk);

    // 導入Windows API中的UnregisterHotKey函數
    [DllImport("user32.dll")]
    private static extern bool UnregisterHotKey(IntPtr hWnd, int id);

    // 定義熱鍵的標識符
    private const int HOTKEY_ID_1 = 1;
    private const int HOTKEY_ID_2 = 2;

    // 定義熱鍵的鍵值和修飾鍵
    private const int HOTKEY_MODIFIER_1 = 0x0002; // Ctrl鍵
    private const int HOTKEY_MODIFIER_2 = 0x0001; // Alt鍵
    private const int HOTKEY_VK_1 = (int)Keys.F1;
    private const int HOTKEY_VK_2 = (int)Keys.F2;

    // 定義熱鍵的響應事件
    public event EventHandler HotKeyPressed1;
    public event EventHandler HotKeyPressed2;

    public HotKeyManager(IntPtr hWnd)
    {
        // 注冊第一個熱鍵
        RegisterHotKey(hWnd, HOTKEY_ID_1, HOTKEY_MODIFIER_1, HOTKEY_VK_1);

        // 注冊第二個熱鍵
        RegisterHotKey(hWnd, HOTKEY_ID_2, HOTKEY_MODIFIER_2, HOTKEY_VK_2);

        // 注冊全局熱鍵消息的處理函數
        ComponentDispatcher.ThreadPreprocessMessage += ThreadPreprocessMessage;
    }

    private void ThreadPreprocessMessage(ref MSG msg, ref bool handled)
    {
        if (handled)
            return;

        if (msg.message == WM_HOTKEY)
        {
            switch (msg.wParam.ToInt32())
            {
                case HOTKEY_ID_1:
                    // 觸發第一個熱鍵的事件
                    HotKeyPressed1?.Invoke(this, EventArgs.Empty);
                    handled = true;
                    break;
                case HOTKEY_ID_2:
                    // 觸發第二個熱鍵的事件
                    HotKeyPressed2?.Invoke(this, EventArgs.Empty);
                    handled = true;
                    break;
            }
        }
    }

    public void UnregisterHotKeys(IntPtr hWnd)
    {
        // 注銷熱鍵
        UnregisterHotKey(hWnd, HOTKEY_ID_1);
        UnregisterHotKey(hWnd, HOTKEY_ID_2);
    }

    private const int WM_HOTKEY = 0x0312;
    [StructLayout(LayoutKind.Sequential)]
    private struct MSG
    {
        public IntPtr hwnd;
        public int message;
        public IntPtr wParam;
        public IntPtr lParam;
        public int time;
        public POINT pt;
    }
    [StructLayout(LayoutKind.Sequential)]
    private struct POINT
    {
        public int X;
        public int Y;
    }
}

使用示例:

public partial class MainForm : Form
{
    private HotKeyManager hotKeyManager;

    public MainForm()
    {
        InitializeComponent();
        hotKeyManager = new HotKeyManager(this.Handle);
        hotKeyManager.HotKeyPressed1 += HotKeyManager_HotKeyPressed1;
        hotKeyManager.HotKeyPressed2 += HotKeyManager_HotKeyPressed2;
    }

    private void HotKeyManager_HotKeyPressed1(object sender, EventArgs e)
    {
        // 第一個熱鍵被觸發時的處理邏輯
        MessageBox.Show("第一個熱鍵被觸發");
    }

    private void HotKeyManager_HotKeyPressed2(object sender, EventArgs e)
    {
        // 第二個熱鍵被觸發時的處理邏輯
        MessageBox.Show("第二個熱鍵被觸發");
    }

    protected override void OnFormClosing(FormClosingEventArgs e)
    {
        base.OnFormClosing(e);
        hotKeyManager.UnregisterHotKeys(this.Handle);
    }
}

在上述示例中,我們創建了一個HotKeyManager類來管理熱鍵的注冊和處理。通過調用RegisterHotKey函數注冊熱鍵,通過調用UnregisterHotKey函數注銷熱鍵。在HotKeyManager類中,我們使用ComponentDispatcher.ThreadPreprocessMessage事件來監聽全

0
池州市| 偃师市| 凌海市| 台前县| 济源市| 清水河县| 富源县| 哈尔滨市| 陇川县| 塔河县| 益阳市| 镇远县| 镇沅| 南和县| 汕尾市| 溆浦县| 永平县| 威远县| 怀集县| 雅安市| 城口县| 即墨市| 无为县| 和林格尔县| 华池县| 资中县| 闽清县| 本溪| 南漳县| 壶关县| 横山县| 鱼台县| 博白县| 白沙| 闽侯县| 华阴市| 河津市| 龙门县| 云龙县| 东乡| 关岭|