コード例 #1
0
 public static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);
コード例 #2
0
 public static extern int DwmGetWindowAttribute(IntPtr hwnd, int dwAttribute, out RECT pvAttribute, int cbAttribute);
コード例 #3
0
 public static extern bool GetClientRect(IntPtr hWnd, out RECT lpRect);
コード例 #4
0
ファイル: NativeStructs.cs プロジェクト: yoykiee/ShareX
 public bool Equals(RECT r)
 {
     return r.Left == Left && r.Top == Top && r.Right == Right && r.Bottom == Bottom;
 }