VB Code:
  1. Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
  2. Dim g As Graphics = e.Graphics
  3. g.DrawString("Kovan", New Font("Arial", 40), New SolidBrush(Color.Gray), 55, 55) 'SHADOW
  4. g.DrawString("Kovan", New Font("Arial", 40), New SolidBrush(Color.Black), 50, 50) 'ORIGINAL TEXT
  5. End Sub
  6.  
  7. 'put that in your form