Window.WindowToLowerRightCorner Method

Sets the window to the lower right corner.
public static void WindowToLowerRightCorner( 
IntPtr Handle 
)
This language is not supported or no code example is available.

Parameters

Handle
IntPtr

Handle.

public static void WindowToLowerRightCorner(IntPtr Handle)
 {
     Import.GetWindowRect(Handle, out RECT rct);
     Rectangle screen = Screen.FromHandle(Handle).Bounds;
     Point pt = new Point(screen.Left + screen.Width / 2 - (rct.Right - rct.Left) / 2,
         screen.Top + screen.Height / 2 - (rct.Bottom - rct.Top) / 2);
     Import.SetWindowPos(Handle, (IntPtr)SpecialWindowHandles.HWND_NOTOPMOST,
         pt.X, pt.Y, 0, 0,
         SET_WINDOW_POS_FLAGS.SWP_NO_ZORDER |
         SET_WINDOW_POS_FLAGS.SWP_IGNORE_RESIZE |
         SET_WINDOW_POS_FLAGS.SWP_SHOW_WINDOW);
 }
					
This language is not supported or no code example is available.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

.NET Core

Supported in: 5.0+, 6.0+

In this article

Definition