this is the code:
Label[] labelxx = new Label[5];
this.Controls.Add(labelxx[0]);
labelxx[0] = new System.Windows.Forms.Label();
labelxx[0].Text = "stuff";
labelxx[0].Location = new System.Drawing.Point(250, 250);
labelxx[0].ForeColor = Color.White;
labelxx[0].BackColor = Color.Yellow;
labelxx[0].Size = new System.Drawing.Size(35, 35);
as you can see, I have set pretty much everything… text, location, size, forecolor-backcolor(to make it more visible in case I cant see it)
However this not working… whats wrong ?
try this