コード例 #1
0
ファイル: WindowPlacement.cs プロジェクト: yener90/Aurora
 private static extern bool GetWindowPlacement(IntPtr hWnd, out WINDOWPLACEMENT lpwndpl);
コード例 #2
0
ファイル: WindowPlacement.cs プロジェクト: yener90/Aurora
 public static void SetPlacement(this Window window, WINDOWPLACEMENT placement)
 {
     WindowPlacement.SetPlacement(new WindowInteropHelper(window).Handle, placement);
 }
コード例 #3
0
ファイル: WindowPlacement.cs プロジェクト: yener90/Aurora
 private static extern bool SetWindowPlacement(IntPtr hWnd, [In] ref WINDOWPLACEMENT lpwndpl);