public static extern bool GetWindowRect(IntPtr hwnd, out RECT lpRect);
public bool Equals(RECT r) { return r.Left == Left && r.Top == Top && r.Right == Right && r.Bottom == Bottom; }