示例#1
0
 private static extern bool SetWindowPlacement(IntPtr hWnd, [In] ref WINDOWPLACEMENT lpwndpl);
示例#2
0
 private static extern bool GetWindowPlacement(IntPtr hWnd, out WINDOWPLACEMENT lpwndpl);
示例#3
0
 /// <summary>
 /// An extension to the Window class to set the window placement.
 /// </summary>
 /// <param name="window">The window to place.</param>
 /// <param name="placement">The placement of the window.</param>
 public static void SetPlacement(this Window window, WINDOWPLACEMENT placement)
 {
     WindowPlacement.SetPlacement(new WindowInteropHelper(window).Handle, placement);
 }