示例#1
0
 public bool MoveWindow(int x, int y, int nWidth, int nHeight, bool bRepaint)
 {
     return(User32APIs.MoveWindow(Hwnd, x, y, nWidth, nHeight, bRepaint));
 }
示例#2
0
 public IntPtr GetNextDlgTabItem(IntPtr hWndCtl, bool bPrevious)
 {
     return(User32APIs.GetNextDlgTabItem(Hwnd, hWndCtl, bPrevious));
 }
示例#3
0
 public IntPtr SendDlgItemMessage(int nID, uint message, IntPtr wParam, IntPtr lParam)
 {
     return(User32APIs.SendDlgItemMessage(Hwnd, nID, message, wParam, lParam));
 }
示例#4
0
 public bool KillTimer(UIntPtr nIDEvent)
 {
     return(User32APIs.KillTimer(Hwnd, nIDEvent));
 }
示例#5
0
 public bool CheckRadioButton(int nIDFirstButton, int nIDLastButton, int nIDCheckButton)
 {
     return(User32APIs.CheckRadioButton(Hwnd, nIDFirstButton, nIDLastButton, nIDCheckButton));
 }
示例#6
0
 public bool ShowOwnedPopups(bool bShow)
 {
     return(User32APIs.ShowOwnedPopups(Hwnd, bShow));
 }
示例#7
0
 public bool LockWindowUpdate(bool bLock)
 {
     return(User32APIs.LockWindowUpdate(Hwnd, bLock));
 }
示例#8
0
 public IntPtr GetWindowDC()
 {
     return(User32APIs.GetWindowDC(Hwnd));
 }
示例#9
0
 public int ReleaseDC(IntPtr hDC)
 {
     return(User32APIs.ReleaseDC(Hwnd, hDC));
 }
示例#10
0
 public bool IsWindow()
 {
     return(Hwnd != null && User32APIs.IsWindow(Hwnd));
 }
示例#11
0
 public bool DestroyWindow()
 {
     return(User32APIs.DestroyWindow(Hwnd));
 }
示例#12
0
 public bool BringWindowToTop()
 {
     return(User32APIs.BringWindowToTop(Hwnd));
 }
示例#13
0
 public uint ArrangeIconicWindows()
 {
     return(User32APIs.ArrangeIconicWindows(Hwnd));
 }
示例#14
0
 public bool SetWindowPos(IntPtr hWndInsertAfter, int x, int y, int cx, int cy, uint nFlags)
 {
     return(User32APIs.SetWindowPos(Hwnd, hWndInsertAfter, x, y, cx, cy, nFlags));
 }
示例#15
0
 public bool ShowWindowAsync(int nCmdShow)
 {
     return(User32APIs.ShowWindowAsync(Hwnd, nCmdShow));
 }
示例#16
0
 public void PrintClient(IntPtr hDC, uint dwFlags)
 {
     User32APIs.PrintClient(Hwnd, hDC, dwFlags);
 }
示例#17
0
 public bool IsWindowVisible()
 {
     return(User32APIs.IsWindowVisible(Hwnd));
 }
示例#18
0
 public bool UpdateWindow()
 {
     return(User32APIs.UpdateWindow(Hwnd));
 }
示例#19
0
 public IntPtr GetDCEx(IntPtr hRgnClip, uint flags)
 {
     return(User32APIs.GetDCEx(Hwnd, hRgnClip, flags));
 }
示例#20
0
 public void SetRedraw(bool bRedraw)
 {
     User32APIs.SetRedraw(Hwnd, bRedraw);
 }
示例#21
0
 public IntPtr SetTimer(UIntPtr nIDEvent, uint uElapse, IntPtr lpTimerProc)
 {
     return(User32APIs.SetTimer(Hwnd, nIDEvent, uElapse, lpTimerProc));
 }
示例#22
0
 public int GetUpdateRgn(IntPtr hRgn, bool bErase)
 {
     return(User32APIs.GetUpdateRgn(Hwnd, hRgn, bErase));
 }
示例#23
0
 public bool CheckDlgButton(int nIDButton, uint nCheck)
 {
     return(User32APIs.CheckDlgButton(Hwnd, nIDButton, nCheck));
 }
示例#24
0
 public bool Invalidate(bool bErase)
 {
     return(User32APIs.Invalidate(Hwnd, bErase));
 }
示例#25
0
 public int GetWindowLong(int nIndex)
 {
     return(User32APIs.GetWindowLongW(Hwnd, nIndex));
 }
示例#26
0
 public void InvalidateRgn(IntPtr hRgn, bool bErase)
 {
     User32APIs.InvalidateRgn(Hwnd, hRgn, bErase);
 }
示例#27
0
 public uint IsDlgButtonChecked(int nIDButton)
 {
     return(User32APIs.IsDlgButtonChecked(Hwnd, nIDButton));
 }
示例#28
0
 public bool ValidateRgn(IntPtr hRgn)
 {
     return(User32APIs.ValidateRgn(Hwnd, hRgn));
 }
示例#29
0
 public bool SetDlgItemInt(int nID, uint nValue, bool bSigned)
 {
     return(User32APIs.SetDlgItemInt(Hwnd, nID, nValue, bSigned));
 }
示例#30
0
 public bool IsZoomed()
 {
     return(User32APIs.IsZoomed(Hwnd));
 }