Visual C# Paint Application
Hello. I am working on a GUI with multiple windows forms. On the click of a menu button a second form with a single picturebox appears. I want to click on a menu button on this form that will make a third form pop-up with paint like tools (color selection, brush width) to draw on the picturebox. So far, the picturebox will upload the picture and the form with the paint like tools will appear. Can someone help with the code to draw on the picturebox?
CherRon McLemorePosted Jun 22, 2010, 2:09 PM
Mahesh ChandPosted Jun 22, 2010, 9:34 AM
Do you also need to display it back? In that case, you may have to merge the image and the drawings. Look into Graphics Path and its properties and methods. You can merge images and drawing objects and create one bitmap from it.
Hope it gives you a direction and pointers.