How to: Draw a Line on a Windows Form
.NET Framework 2.0
This example draws a line on a form.
Example
Compiling the Code
You cannot call this method in the Load event handler. The drawn content will not be redrawn if the form is resized or obscured by another form. To make your content automatically repaint, you should override the OnPaint method.
Robust Programming
You should always call Dispose on any objects that consume system resources, such as Pen and Graphics objects.