예제 #1
0
 public static extern int FillRect(
     IntPtr hDC,
     ref RECT lprc,
     IntPtr hbr);
예제 #2
0
 public static extern int DrawTextW(
     IntPtr hdc,
     string lpString,
     int nCount,
     ref RECT lpRect,
     uint uFormat);
예제 #3
0
 public static extern void DrawThemeBackground(
     IntPtr hTheme,
     IntPtr hdc,
     int iPartId,
     int iStateId,
     ref RECT pRect,
     ref RECT pClipRect);
예제 #4
0
 public bool Equals(RECT r)
 {
     return r.Left == Left && r.Top == Top && r.Right == Right && r.Bottom == Bottom;
 }