Esempio n. 1
0
 public bool SetPosition(HwndZOrder order, int x, int y, int width, int height, WindowPositionFlags flags)
 {
     return(User32Helpers.SetWindowPos(this.Handle, order, x, y, width, height, flags));
 }
Esempio n. 2
0
 public static bool SetWindowPos(IntPtr hwnd, HwndZOrder order, int x, int y, int cx, int cy,
                                 WindowPositionFlags flags)
 {
     return(User32Methods.SetWindowPos(hwnd, new IntPtr((int)order), x, y, cx, cy, flags));
 }