コード例 #1
0
 public static extern bool GetWindowRect(IntPtr hWnd, ref RECT lpRect);
コード例 #2
0
 public bool Equals(RECT rect)
 {
     return rect.Left == Left && rect.Top == Top && rect.Bottom == Bottom && rect.Right == Right;
 }