コード例 #1
0
ファイル: Win32Sharp.cs プロジェクト: rurbina/win32-sharp
		public static extern bool GetWindowRect(IntPtr hWnd, out RECT WindowRECT);
コード例 #2
0
ファイル: Win32Sharp.cs プロジェクト: rurbina/win32-sharp
		public static Rectangle GetWindowRectangle(IntPtr hWnd)
		{
			RECT rect = new RECT();
			GetWindowRect(hWnd, out rect);
			return new Rectangle(rect.Left, rect.Top, rect.Right - rect.Left, rect.Bottom - rect.Top);
		}
コード例 #3
0
ファイル: Win32Sharp.cs プロジェクト: rurbina/win32-sharp
		public static extern bool ClipCursor(ref RECT lpRect);