So, my problem is that i have a button in one form that needs to add a label in other form, label has a text that is from main labels textbox, and label has a backcolor that is from color block selected from main form.
private void btnAdd_Click(object sender, EventArgs e)
{
PiezimesLogs log = new PiezimesLogs();//form where the label would be added
Label l = new Label();// creates new label
l.Text = piezimeTxt.Text;
l.BackColor = ColorChange.BackColor;
log.Controls.Add(l);
}
so, this is the code from button that should do everything. log - other form in which the label should be created.
c# win form
Instead of creating a new label, you could simply add an empty label to your 'target-form'.
Afterwards, you can simply modify the labels' text in order to make it appear.
Regards, Michael