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