示例#1
0
 public static extern BOOL PostMessageW(
     HWND hWnd,
     WM Msg,
     WPARAM wParam,
     LPARAM lParam
     );
示例#2
0
 public static extern BOOL CloseWindow(
     HWND hWnd
     );
示例#3
0
 public static extern BOOL DestroyWindow(
     HWND hWnd
     );
示例#4
0
 public static extern int ReleaseDC(
     HWND hWnd,
     HDC hDC
     );
示例#5
0
 public static extern BOOL EnableWindow(
     HWND hWnd,
     BOOL bEnable
     );
示例#6
0
 public static extern BOOL InvalidateRect(
     HWND hWnd,
     IntPtr lpRect,
     BOOL bErase
     );
示例#7
0
 public static extern HDC GetDC(
     HWND hWnd
     );
示例#8
0
 public static extern HDC BeginPaint(
     HWND hWnd,
     ref PAINTSTRUCT lpPaint
     );
示例#9
0
 public static extern BOOL EndPaint(
     HWND hWnd,
     ref PAINTSTRUCT lpPaint
     );
示例#10
0
 public static extern BOOL ShowWindow(
     HWND hWnd,
     SW nCmdShow
     );
示例#11
0
 public static extern int MessageBoxW(
     HWND hWnd,
     string lpText,
     string lpCaption,
     MB uType
     );
示例#12
0
 public static extern bool GetMessageW(
     ref MSG lpMsg,
     HWND hWnd,
     UINT wMsgFilterMin,
     UINT wMsgFilterMax
     );
示例#13
0
 public static extern BOOL GetClientRect(
     HWND hWnd,
     out RECT lpRect
     );
示例#14
0
 public static extern LRESULT DefWindowProcW(
     HWND hWnd,
     WM Msg,
     WPARAM wParam,
     LPARAM lParam
     );