ホットキーの設定は、.NETクラスライブラリ内では処理できないので、 Win-APIを利用します。 使用する関数は、 RegisterHotKey => HotKey登録 UnRegisterHotKey => HotKey解除 となります。 上記api関数は、user32.dll内にて定義されているので まず、それをインポートする必要があります。 インポートするには、 using System.Runtime.InteropServices; が必要になります。 その後、 [DllImport("user32.dll")] extern static int RegisterHotKey(IntPtr hWnd, int id, int modKey, int key); [DllImport("user32.dll")] extern static int UnregisterHotK