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