Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
e.Graphics.DrawLine(Pens.Black, 50, 25, 25, 75)
e.Graphics.DrawLine(Pens.Black, 25, 75, 75, 75)
e.Graphics.DrawLine(Pens.Black, 75, 75, 50, 25)
End Sub
Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
Dim gp As New Drawing2D.GraphicsPath
gp.AddLine(50, 25, 25, 75)
gp.AddLine(25, 75, 75, 75)
gp.AddLine(75, 75, 50, 25)
e.Graphics.FillPath(Brushes.Red, gp)
End Sub