public static extern bool SetWindowPos
 (
     IntPtr window_handle,
     IntPtr insert_after_handle,
     int x,
     int y,
     int w,
     int h,
     SWP_Flags flags
 );
Exemplo n.º 2
0
        public override string ToString()
        {
            object[] array = new object[9];
            array[0] = this.x;
            array[1] = ":";
            array[2] = this.y;
            array[3] = ":";
            array[4] = this.cx;
            array[5] = ":";
            array[6] = this.cy;
            array[7] = ":";
            int       num       = 8;
            SWP_Flags swp_Flags = (SWP_Flags)this.flags;

            array[num] = swp_Flags.ToString();
            return(string.Concat(array));
        }
Exemplo n.º 3
0
 internal static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int Y, int cx, int cy, SWP_Flags wFlags);
Exemplo n.º 4
0
 public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, int cy, SWP_Flags uFlags);