I want to draw a simple 2d rectangle on a form.
Because I have never done anything graphical in vb.net, I searched the web and found many instances, that offer solutions similar to this one.
Public Sub DrawRectangleRectangle(ByVal e As PaintEventArgs)
' Create pen.
Dim blackPen As New Pen(Color.Black, 3)
' Create rectangle.
Dim rect As New Rectangle(0, 0, 200, 200)
' Draw rectangle to screen.
e.Graphics.DrawRectangle(blackPen, rect)
End Sub
Yet, I don't understand how this works..
What is this e As PaintEventArgs
? What input does this sub require? How can I draw a simple rectangle?
For starters, I want something simple to work so I can experiment on it and eventually learn more advanced stuff.
OK this code works fine before,You can test it for learning