Ich habe ein Panel in Visual Studio/Windows Form app.Aber ich kann nicht hinzufügen, pictureBox auf es mit code.It funktioniert, wenn ich ohne Panel aber ich brauche es.MyCodes:Hinzufügen von PictureBox zu Panel mit Codes
PictureBox[] pipe = new PictureBox[3];
private void Form1_Load(object sender, EventArgs e)
{
CreatePipes(1);}
private void CreatetopPipes(int Number)
{
for (int i = 0; i <= Number; i++)
{
PictureBox temp = new PictureBox();
this.Controls.Add(temp);
temp.Width = 50;
temp.Height = 350;
temp.BorderStyle = BorderStyle.FixedSingle;
temp.BackColor = Color.Red;
temp.Top = 30;
temp.Left = 300;
topPipe[i] = temp;
topPipe[i].Visible = true;
}
}
'this' - ein' Form' ist. Verwenden Sie stattdessen Ihr Panel. –
Und stapeln Sie sie nicht alle am selben Ort! – TaW