Exemple #1
0
 public void DrawRectangle(Rect r)
 {
     DrawRectangle (r.Left, r.Top, r.Right, r.Bottom);
 }
Exemple #2
0
 static extern bool GetWindowRect(IntPtr hwnd, out Rect lpRect);
Exemple #3
0
 public static extern bool GetClientRect(IntPtr hWnd, out Rect lpRect);
Exemple #4
0
		public bool Equals (Rect r)
		{
			return r.Left == Left && r.Top == Top && r.Right == Right && r.Bottom == Bottom;
		}