How do i draw a background and pictures onto a form?

tahu191

Well-known member
Joined
Oct 27, 2005
Messages
48
Location
USA
Programming Experience
Beginner
I want to draw a background and pictures that have a transparent background onto the form. Are they able to be in png format? Also I need it to clear the screen after each drawing to be ready for the next Thanks
 
You can use Paint event, draw with e.Graphics. Or in most cases it is more economical to compose the background image/bitmap and assign to forms BackgroundImage property. Did you see GDI+ FAQ? Of course lots of documentation samples for the classes in System.Drawing namespace too.
 
Back
Top