Hi @Devon Nullman ,
You need to adjust the Margin property of the labels.
For example:
For i As Integer = 1 To 20
Dim label As New Label()
label.Text = "Label " & i
label.Size = New Size(50, 30)
label.Margin = New Padding(5) ' Space around each label
label.BorderStyle = BorderStyle.FixedSingle
flowPanel.Controls.Add(label)
Next
Best Regards.
Jiachen Li
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment". Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.