Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than gdi32, prefix the name with the module name and a period.
RoundRect (gdi32)
.
C# Signature:
[DllImport("gdi32.dll")]
static extern bool RoundRect(IntPtr hdc, int nLeftRect, int nTopRect,
int nRightRect, int nBottomRect, int nWidth, int nHeight);
User-Defined Types:
None.
Notes:
None.
Tips & Tricks:
Please add some!
Sample Code:
public class GDI32
{
#region GDI32 Functions
[DllImport("gdi32.dll")]
public static extern bool RoundRect(RECT lpRect, Point point);
[DllImport("gdi32.dll")]
public static extern bool RoundRect(IntPtr hdc, int nLeftRect, int nTopRect,
int nRightRect, int nBottomRect, int nWidth, int nHeight);
[DllImport("gdi32.dll")]
public static extern IntPtr CreateSolidBrush(uint crColor);
[DllImport("gdi32.dll")]
public static extern IntPtr CreatePen(int fnPenStyle, int nWidth, uint crColor);
[DllImport("gdi32.dll")]
public static extern IntPtr SelectObject(IntPtr hdc, IntPtr hgdiobj);
[DllImport("gdi32.dll")]
public static extern bool DeleteObject(IntPtr hObject);
public static int RGB(Color color)
public class GDI32
{
return color.ToArgb() & 0xffffff;
}
#region GDI32 Functions
[DllImport("gdi32.dll")]
public static extern bool RoundRect(RECT lpRect, Point point);
#endregion
}
[DllImport("gdi32.dll")]
public static extern bool RoundRect(IntPtr hdc, int nLeftRect, int nTopRect,
int nRightRect, int nBottomRect, int nWidth, int nHeight);
public class RoundControl : System.Windows.Forms.Control
{
protected override void OnPaint(PaintEventArgs e)
{
DrawRoundRect(e.Graphics);
}
[DllImport("gdi32.dll")]
public static extern IntPtr CreateSolidBrush(uint crColor);
public void DrawRoundRect(Graphics gr)
{
RECT rect = new RECT(0, 0, this.Width, this.Height);
IntPtr hDC = gr.GetHdc();
IntPtr thePen = GDI32.CreatePen(0, 1, (uint)GDI32.RGB(Color.White));
IntPtr theBrush = GDI32.CreateSolidBrush((uint)GDI32.RGB(Color.White));
IntPtr oldPen = GDI32.SelectObject(hDC, thePen);
IntPtr oldBrush = GDI32.SelectObject(hDC, theBrush);
[DllImport("gdi32.dll")]
public static extern IntPtr CreatePen(int fnPenStyle, int nWidth, uint crColor);
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).