Exemple #1
0
 public bool FillRect(ref RECT rect, COLOR color)
 {
     return FillRect(this, ref rect, (int)color + 1);
 }
Exemple #2
0
 private static extern bool FillRect(HDC hDC, ref RECT lprc, int color);
Exemple #3
0
 public bool FillRect(ref RECT rect, HBRUSH brush)
 {
     return FillRect(this, ref rect, brush);
 }
Exemple #4
0
 private static extern bool FillRect(HDC hDC, ref RECT lprc, HBRUSH hbr);
Exemple #5
0
 public static extern bool AdjustWindowRectEx(ref RECT lpRect, WS style, bool bMenu, WS_EX exStyle);
Exemple #6
0
 public static extern bool GetWindowRect(HWND hwnd, ref RECT lpRect);
Exemple #7
0
 public static extern bool GetClientRect(HWND hwnd, ref RECT lpRect);
Exemple #8
0
 public static extern int DrawText(IntPtr hDC, string lpString, int nCount, ref RECT lpRect, DT uFormat);