22-11-17, 06:26 AM
PHP كود :
Dim lbl As New YourLabel
lbl.Parent = Me
lbl.Location = New Point(10, 10)
PHP كود :
Class YourLabel
Inherits Label
Sub New()
Me.BackColor = Color.Red
Me.AutoSize = False
Me.Size = New Size(100, 100)
Me.BorderStyle = Windows.Forms.BorderStyle.FixedSingle
End Sub
End Class
