CreateSolidBrush

C# Signature:

[DllImport("gdi32.dll")]
static extern IntPtr CreateSolidBrush(uint crColor);

VB.NET Signature:

<DllImport("gdi32.dll")> _
Private Shared Function CreateSolidBrush(crColor As UInteger) As IntPtr
End Function

Sample Code:

[DllImport("user32.dll",EntryPoint="GetDC")]
        static extern IntPtr GetDC(IntPtr hWnd);

        [DllImport("gdi32.dll")]
        static extern bool FillRgn(IntPtr hdc, IntPtr hrgn, IntPtr hbr);

        [DllImport("gdi32.dll")]
        static extern IntPtr CreateRectRgn(int nLeftRect, int nTopRect, int nRightRect,
            int nBottomRect);

        [DllImport("gdi32.dll")]
        static extern IntPtr CreateSolidBrush(uint crColor);

        [DllImport("gdi32.dll")]
        static extern bool DeleteObject(IntPtr hObject);

Sample Code:

Última actualización