I'm trying to create a circle but the problem is that the box appears in the background.
Is there any way to resolve this problem?
I tried:
Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
Dim G As Graphics = e.Graphics
G.SmoothingMode = SmoothingMode.AntiAlias
G.FillEllipse(Pens.Red, 2, 2, Width - 4, Height - 4)
End Sub