X
Xarky
Hi,
I am trying to create a Label for a Windows Form, with my own code.
Its not being visible. The code being used is the following.
Label x = new Label();
x.Name = "node1";
x.Location = new System.Drawing.Point(200, 200);
x.Text = "Hello";
x.TabIndex = 1;
x.Show();
x.Refresh();
Can someone help.
Thanks
I am trying to create a Label for a Windows Form, with my own code.
Its not being visible. The code being used is the following.
Label x = new Label();
x.Name = "node1";
x.Location = new System.Drawing.Point(200, 200);
x.Text = "Hello";
x.TabIndex = 1;
x.Show();
x.Refresh();
Can someone help.
Thanks