label is not created in other form C# win form

63 Views Asked by At

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

1

There are 1 best solutions below

2
On

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