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