This section will cover how you can draw onto any control using GD+. It covers some basic drawing methods, but you will need to use the provided links to official resources in order to find some more details.
Before you do this, you need to be familiar with the coordinate system that is used by Windows Forms (and most programming languages).
Visit this reference page for more information:
1 - Complete the Graphics tutorial.
There are links to some good official documentation at the bottom of this page.
2 - Complete the graphics assignment at the end of the tutorial. This will be handed in.
Here are links to the official documentation on how to draw various shapes:
At this link, you can find directions on how to draw any type of shape.
The graphics assignment you created at the end of the Graphics tutorial.
Graphics Class
https://docs.microsoft.com/en-us/dotnet/api/system.drawing.graphics?view=netframework-4.8
Look under Methods to find specific shape drawing methods.
Using a Pen to Draw Lines and Rectangles
https://docs.microsoft.com/en-us/dotnet/framework/winforms/advanced/pens-lines-and-rectangles-in-gdi
Using a Brush to Draw a Filled in Shape
https://docs.microsoft.com/en-us/dotnet/framework/winforms/advanced/brushes-and-filled-shapes-in-gdi
Information on all Lines Curves and Shapes
https://docs.microsoft.com/en-us/dotnet/framework/winforms/advanced/lines-curves-and-shapes