Where the
first argument define the color(here is blue, you can change
that to red or whatever color you want) and the second argument
is the width of the drawing line.
Having
created the Graphics and the Pen objects, you are now ready to draw
graphics on the screen which we will show you in the following
section.s
21.3
Drawing a Line
In this
section, we will show you how to draw a straight line on the Form.
First of
all, launch Visual basic 2010 Express. In the startup page, drag a
button into the form. Double click on the button and key in the
following code.
Private Sub
Button1_Click(ByVal sender
As System.Object,
ByVal e As
System.EventArgs)
Handles Button1.Click
Dim
myGraphics As
Graphics = me.CreateGraphics
Dim myPen
As Pen
myPen = New Pen(Brushes.DarkMagenta,
10)
myGraphics.DrawLine(myPen, 10, 10, 100,
10)
End
Sub
The second
created the Graphics object and the third and fourth line create the
Pen object. The fifth draw a line on the Form using the DrawLine
method. The first argument use the Pen object created by you, the
second argument and the third arguments define the coordinate the
starting point of the line, the fourth and the last arguments define
the ending coordinate of the line. The general syntax of the
Drawline argument is
object.DrawLine(Pen, x1, y1, x2,
y2)
The output of the program is shown
below:
That's all for the lesson at the moment,
you can modify the above the code by changing the color and the
width of the line as well as the coordinates of the starting and the
ending points.
We will show you how to draw shapes and more drawing options
in the coming lesson.