コード例 #1
0
ファイル: Structs.cs プロジェクト: uonun/TaggableShell
 public bool Equals(RECT Rectangle)
 {
     return Rectangle.Left == _Left && Rectangle.Top == _Top && Rectangle.Right == _Right && Rectangle.Bottom == _Bottom;
 }
コード例 #2
0
ファイル: User32.cs プロジェクト: uonun/TaggableShell
 public static extern bool GetWindowRect(IntPtr hWnd, ref RECT lpRect);
コード例 #3
0
ファイル: Structs.cs プロジェクト: uonun/TaggableShell
 public static Rectangle ToRectangle(RECT Rectangle)
 {
     return Rectangle.ToRectangle();
 }
コード例 #4
0
ファイル: User32.cs プロジェクト: uonun/TaggableShell
 public static extern int GetClientRect(IntPtr hwnd, ref RECT lpRect);