いろいろ備忘録日記

主に .NET とか Go とか Flutter とか Python絡みのメモを公開しています。

2007-04-16から1日間の記事一覧

ホットキー(HotKey)の設定 (DllImport, InteropServices, RegisterHotKey, UnRegisterHotKey)

C#

ホットキーの設定は、.NETクラスライブラリ内では処理できないので、 Win-APIを利用します。 使用する関数は、 RegisterHotKey => HotKey登録 UnRegisterHotKey => HotKey解除 となります。 上記api関数は、user32.dll内にて定義されているので まず、それを…