示例#1
0
 public static extern IntPtr MonitorFromRect([In] ref Win32Helper.RECT lprc, uint dwFlags);
示例#2
0
 internal static extern bool GetWindowRect(IntPtr hWnd, out Win32Helper.RECT lpRect);
示例#3
0
 internal static Win32Helper.RECT GetWindowRect(IntPtr hWnd)
 {
     Win32Helper.RECT rECT = new Win32Helper.RECT();
     Win32Helper.GetWindowRect(hWnd, out rECT);
     return(rECT);
 }
示例#4
0
 private static extern bool GetClientRect(IntPtr hWnd, out Win32Helper.RECT lpRect);