Outline text on a button

use the Paint event;
VB.NET:
    Private Sub Button1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Button1.Paint
        e.Graphics.DrawRectangle(Pens.Red, 4, 4, Button1.Width - 8, Button1.Height - 8)
    End Sub
 
Back
Top