I wish to define a one time label while adding it to controls, whats the correct syntax of doing so?
for example something like this:
this.Controls.Add(new Label
{
.BorderStyle = label1.BorderStyle,
.BackColor = label1.BackColor,
.Text = "Breaks",
.Font = label1.Font,
});