C# 클래스 GlobalHotkeys.Hotkey

Definition of Keys to register and react to. Only keys nor registered by EA are available.
상속: IDisposable
파일 보기 프로젝트 열기: Helmut-Ortmann/EnterpriseArchitect_hoTools

Private Properties

프로퍼티 타입 설명
RegisterHotKey bool
UnregisterHotKey bool

공개 메소드들

메소드 설명
Dispose ( ) : void
GetHashCode ( ) : int
Hotkey ( Keys key, Modifiers modifiers, HotkeyHandler handler ) : System
IsPressedKeyCombination ( IntPtr lParam ) : bool
Register ( IWin32Window window ) : void

Registers the current hotkey with Windows. Note! You must override the WndProc method in your window that registers the hotkey, or you will not receive any hotkey notifications.

Unregister ( ) : void

Unregisters the current hotkey with Windows.

비공개 메소드들

메소드 설명
RegisterHotKey ( IntPtr hWnd, int id, int fsModifiers, int vk ) : bool
UnregisterHotKey ( IntPtr hWnd, int id ) : bool

메소드 상세

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

GetHashCode() 공개 최종 메소드

public final GetHashCode ( ) : int
리턴 int

Hotkey() 공개 메소드

public Hotkey ( Keys key, Modifiers modifiers, HotkeyHandler handler ) : System
key Keys
modifiers Modifiers
handler HotkeyHandler
리턴 System

IsPressedKeyCombination() 공개 메소드

public IsPressedKeyCombination ( IntPtr lParam ) : bool
lParam System.IntPtr
리턴 bool

Register() 공개 메소드

Registers the current hotkey with Windows. Note! You must override the WndProc method in your window that registers the hotkey, or you will not receive any hotkey notifications.
public Register ( IWin32Window window ) : void
window IWin32Window
리턴 void

Unregister() 공개 메소드

Unregisters the current hotkey with Windows.
public Unregister ( ) : void
리턴 void