728x90
UnregisterHotKey함수는 RegisterHotKey함수로 설정한 Hotkey를 더이상 사용하지 않도록 해제하는 함수입니다.
Declare Function UnregisterHotKey Lib "user32" Alias "UnregisterHotKey" (ByVal hwnd As Integer, ByVal id As Integer) As Integer
▶VB.NET 선언
UnregisterHotKey(handle, id)
▶VB.NET 호출
[DllImport("user32.dll")]
private static extern int UnregisterHotKey(int hwnd, int id);
▶C# 선언
UnregisterHotKey(handle, id);
▶C# 호출
함수의 인수중 handle은 Hotkey를 해제하고자 하는 Form의 handle을 그리고 id는 Hotkey를 설정할때의 id값을 그대로 전달하면 됩니다.
728x90
'.NET > Windows API for .NET' 카테고리의 다른 글
SetFocus - Window Form및 Control Focus 설정 (0) | 2019.08.12 |
---|---|
RegisterHotKey - Windows Hotkey 설정 (0) | 2019.08.12 |
SetActiveWindow - Windows 최상위 활성화 (0) | 2019.08.12 |
OemKeyScan - OEM Ascii Code의 OEM Scan Code변환 (0) | 2019.08.12 |
MapVirtualKey - Virtual Keycode와 Scan Code의 상호 변환 (0) | 2019.08.12 |