示例#1
0
文件: Dc.cs 项目: manu-silicon/wcl
 public void DrawRectangle(Rect r)
 {
     DrawRectangle (r.Left, r.Top, r.Right, r.Bottom);
 }
示例#2
0
文件: Win32.cs 项目: manu-silicon/wcl
 static extern bool GetWindowRect(IntPtr hwnd, out Rect lpRect);
示例#3
0
文件: Win32.cs 项目: manu-silicon/wcl
 public static extern bool GetClientRect(IntPtr hWnd, out Rect lpRect);
示例#4
0
文件: Rect.cs 项目: manu-silicon/wcl
		public bool Equals (Rect r)
		{
			return r.Left == Left && r.Top == Top && r.Right == Right && r.Bottom == Bottom;
		}