예제 #1
0
 private static extern bool ScreenToClient(IntPtr hWnd, ref Win32Types.Rect lpRect);
예제 #2
0
 public static bool ScreenToClientWrapper(IntPtr hWnd, ref Win32Types.Rect lpRect)
 {
     return(ScreenToClient(hWnd, ref lpRect));
 }
예제 #3
0
 private static extern bool GetClientRect(IntPtr hWnd, out Win32Types.Rect lpRect);
예제 #4
0
 public static bool GetClientRectWrapper(IntPtr hWnd, out Win32Types.Rect lpRect)
 {
     return(GetClientRect(hWnd, out lpRect));
 }