0

user32.dll から「RegisterHotKey」でホットキーを登録しています。ホットキーを押すと、Console.WriteLine("HOTKEY"); を実行するイベントがトリガーされます。

正常に動作しますが、約 5 秒後に動作しなくなるという問題が発生しています。イベントはトリガーされなくなりました。コメントアウトすることで、これを 1 行のコードに絞り込みました。 Process[] p = Process.GetProcessesByName("notepad"); つまり、プロセス名を取得します(名前は関係ありません、メモ帳など)

この GetProcessesByName は、System.Timers タイマーで 1 秒に 1 回呼び出されます。そして、私が言ったように、約 5 秒後 (時には 3 秒か 4 秒、ランダムです)、ホットキーが機能しなくなります。

どうすればこれを修正できますか?

以下は私が使用しているコードです(このウェブサイトから

問題は、RegisterHotKey の第 1 引数と関係があるのでしょうか?? (HWND) ホットキーを登録するにはアクティブなフォームが必要ですか?

 public class HotkeyController {

    public HotkeyController() {
        KeyboardHook k = new KeyboardHook();
        k.RegisterHotKey(0, Keys.Subtract);
        k.KeyPressed += new EventHandler<KeyPressedEventArgs>(k_KeyPressed);
    }

    void k_KeyPressed(object sender, KeyPressedEventArgs e) {
        Console.WriteLine("HOTKEY");
    }
}

public sealed class KeyboardHook : IDisposable {
    // Registers a hot key with Windows.
    [DllImport("user32.dll")]
    private static extern bool RegisterHotKey(IntPtr hWnd, int id, uint fsModifiers, uint vk);
    // Unregisters the hot key with Windows.
    [DllImport("user32.dll")]
    private static extern bool UnregisterHotKey(IntPtr hWnd, int id);
    /// <summary>
    /// Represents the window that is used internally to get the messages.
    /// </summary>
    private class Window : NativeWindow, IDisposable {
        private static int WM_HOTKEY = 0x0312;

        public Window() {
            // create the handle for the window.
            this.CreateHandle(new CreateParams());
        }

        /// <summary>
        /// Overridden to get the notifications.
        /// </summary>
        /// <param name="m"></param>
        protected override void WndProc(ref Message m) {
            base.WndProc(ref m);

            // check if we got a hot key pressed.
            if (m.Msg == WM_HOTKEY) {
                // get the keys.
                Keys key = (Keys)(((int)m.LParam >> 16) & 0xFFFF);
                ModifierKeys modifier = (ModifierKeys)((int)m.LParam & 0xFFFF);

                // invoke the event to notify the parent.
                if (KeyPressed != null)
                    KeyPressed(this, new KeyPressedEventArgs(modifier, key));
            }
        }

        public event EventHandler<KeyPressedEventArgs> KeyPressed;

        #region IDisposable Members

        public void Dispose() {
            this.DestroyHandle();
        }

        #endregion
    }

    private Window _window = new Window();
    private int _currentId;

    public KeyboardHook() {
        // register the event of the inner native window.
        _window.KeyPressed += delegate(object sender, KeyPressedEventArgs args) {
            if (KeyPressed != null)
                KeyPressed(this, args);
        };
    }

    /// <summary>
    /// Registers a hot key in the system.
    /// </summary>
    /// <param name="modifier">The modifiers that are associated with the hot key.</param>
    /// <param name="key">The key itself that is associated with the hot key.</param>
    public void RegisterHotKey(ModifierKeys modifier, Keys key) {
        // increment the counter.
        _currentId = _currentId + 1;

        // register the hot key.
        if (!RegisterHotKey(_window.Handle, _currentId, (uint)modifier, (uint)key))
            throw new InvalidOperationException("Couldn’t register the hot key.");
    }

    /// <summary>
    /// A hot key has been pressed.
    /// </summary>
    public event EventHandler<KeyPressedEventArgs> KeyPressed;

    #region IDisposable Members

    public void Dispose() {
        // unregister all the registered hot keys.
        for (int i = _currentId; i > 0; i--) {
            UnregisterHotKey(_window.Handle, i);
        }

        // dispose the inner native window.
        _window.Dispose();
    }

    #endregion
}

/// <summary>
/// Event Args for the event that is fired after the hot key has been pressed.
/// </summary>
public class KeyPressedEventArgs : EventArgs {
    private ModifierKeys _modifier;
    private Keys _key;

    internal KeyPressedEventArgs(ModifierKeys modifier, Keys key) {
        _modifier = modifier;
        _key = key;
    }

    public ModifierKeys Modifier {
        get { return _modifier; }
    }

    public Keys Key {
        get { return _key; }
    }
}

/// <summary>
/// The enumeration of possible modifiers.
/// </summary>
[Flags]
public enum ModifierKeys : uint {
    Alt = 1,
    Control = 2,
    Shift = 4,
    Win = 8
}
4

1 に答える 1

0

アレックスに感謝します。フォームを使用してこれを試すというアイデアをくれました (私が過去に使用していたように)。現在は正常に機能しています。

私が投稿したコードでは、それはウィンドウをそのようにします(これは何であり、フォームとどのように違うのですか?) private Window _window = new Window();

おそらくProcess.GetProcessesこの「ウィンドウ」を見つけて殺しますか?したがって、ホットキーが機能しなくなりますか?知るか??私は教祖ではありません...

とにかく、目に見えないフォームを作るだけで十分です。

これは私が使用している「ホットキーフォーム」コードです:

public partial class HotkeyForm : Form {
    public HotkeyForm() {
        InitializeComponent();

        RegisterHotKey(this.Handle, 0, 0, (int)Keys.Subtract);


    }


    protected override void WndProc(ref Message m) {
        if (m.Msg == 0x0312) {
            switch (m.WParam.ToInt32()) {
                case 0: //numpad minus.
                    //Environment.Exit(0);
                    Console.WriteLine("FORM HOTKEY");
                    break;

            }

        }

        base.WndProc(ref m);
    }


}
于 2012-12-28T11:28:35.800 に答える