C# 클래스 GlobalHotKey.Internal.WinApi

Contains imported Win32 API functions, constants and helper methods.
파일 보기 프로젝트 열기: kirmir/GlobalHotKey

공개 프로퍼티들

프로퍼티 타입 설명
WmHotKey int

공개 메소드들

메소드 설명
RegisterHotKey ( IntPtr handle, int id, Key key, ModifierKeys modifiers ) : bool

Registers a system-wide hot key.

비공개 메소드들

메소드 설명
RegisterHotKey ( IntPtr handle, int id, uint modifiers, uint virtualCode ) : bool
UnregisterHotKey ( IntPtr handle, int id ) : bool

메소드 상세

RegisterHotKey() 공개 정적인 메소드

Registers a system-wide hot key.
public static RegisterHotKey ( IntPtr handle, int id, Key key, ModifierKeys modifiers ) : bool
handle System.IntPtr The handle of the window that will process hot key messages.
id int The hot key ID.
key Key The key.
modifiers ModifierKeys The key modifiers.
리턴 bool

프로퍼티 상세

WmHotKey 공개적으로 정적으로 프로퍼티

The message code posted when the user presses a hot key.
public static int WmHotKey
리턴 int