Esempio n. 1
0
 public static int GetWindowText(IntPtr hWnd, StringBuilder title, int length)
 {
     return(SafeNativeMethods.GetWindowText(hWnd, title, length));
 }
Esempio n. 2
0
 public static bool BringWindowToTop(IntPtr hWnd)
 {
     return(SafeNativeMethods.BringWindowToTop(hWnd));
 }
Esempio n. 3
0
 public static IntPtr GetWindow(IntPtr parentHWnd, GW uCmd)
 {
     return(SafeNativeMethods.GetWindow(parentHWnd, uCmd));
 }
Esempio n. 4
0
 public static bool SetForegroundWindow(IntPtr hWnd)
 {
     return(SafeNativeMethods.SetForegroundWindow(hWnd));
 }
Esempio n. 5
0
 public static int SetWindowLong(IntPtr hWnd, int index, int newStyle)
 {
     return(SafeNativeMethods.SetWindowLong(hWnd, index, newStyle));
 }
Esempio n. 6
0
 public static int GetWindowLong(IntPtr hWnd, int index)
 {
     return(SafeNativeMethods.GetWindowLong(hWnd, index));
 }
Esempio n. 7
0
 public static bool DestroyWindow(IntPtr hWnd)
 {
     return(SafeNativeMethods.DestroyWindow(hWnd));
 }
Esempio n. 8
0
 public static IntPtr GetForegroundWindow()
 {
     return(SafeNativeMethods.GetForegroundWindow());
 }