Вы должны рисовать в событии Paint объекта, на котором вы хотите нарисовать линию.Поэтому просто используйте объект Graphics в переменной e
из параметра EventArgs
события Paint.Вот пример VB.NET:
Private Sub ExampleLinkLabel_Paint(ByVal sender As Object, _
ByVal e As System.Windows.Forms.PaintEventArgs) _
Handles lnkMyLinkLabel.Paint
Dim lbl As LinkLabel = DirectCast(sender, Label)
Dim pen1 As New System.Drawing.Pen(Color.Black, 1)
Dim topLeft As New Point(0, 0)
Dim topRight As New Point(lbl.Width - 1, 0)
Dim bottomLeft As New Point(0, lbl.Height - 1)
Dim bottomRight As New Point(lbl.Width - 1, lbl.Height - 1)
e.Graphics.DrawLine(pen1, topLeft, topRight)
e.Graphics.DrawLine(pen1, bottomLeft, bottomRight)
e.Graphics.DrawLine(pen1, topRight, bottomRight)
End Sub