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