コード例 #1
0
ファイル: MyLabel.cs プロジェクト: aiwoba/HotKey
 public void UnregisterHotKeys()
 {
     //注销Id号为100的热键设定
     HotKeysManager.UnregisterHotKey(Handle, 100);
     //注销Id号为101的热键设定
     HotKeysManager.UnregisterHotKey(Handle, 101);
 }
コード例 #2
0
ファイル: Form1.cs プロジェクト: aiwoba/HotKey
 private void labelTest_MouseLeave(object sender, EventArgs e)
 {
     //注销Id号为100的热键设定
     HotKeysManager.UnregisterHotKey(Handle, 100);
     //注销Id号为101的热键设定
     HotKeysManager.UnregisterHotKey(Handle, 101);
 }