// This paints the current form black
IntPtr wDc = GetDC(this.Handle);
int mx = Screen.PrimaryScreen.WorkingArea.Width;
int my = Screen.PrimaryScreen.WorkingArea.Height;
IntPtr brush = CreateSolidBrush((uint)ColorTranslator.ToWin32(Color.Black));
FillRgn(wDc, CreateRectRgn(0,0,mx,my), brush);
DeleteObject(brush);
Alternative Managed API:
Do you know one? Please contribute it!
The DeleteObject function deletes a logical pen, brush, font, bitmap, region, or palette, freeing all system resources associated with the object. After the object is deleted, the specified handle is no longer valid.
2/6/2012 3:25:19 AM - -202.74.138.1
Please edit this page!
Do you have...
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).