我想以 Windows 形式创建二维按钮数组。我必须使用 for 循环来完成,因为我想要一个包含 100 个按钮的数组。但我无法让它工作。我尝试使用 List> 和 Button[,] 但不起作用。当我这样尝试时:
private List<List<Button>> LEDarray = new List<List<Button>>();
for (int y = 0; y < 5; y++)
{
this.tempList.Clear();
for (int x = 0; x < 20; x++)
{
this.tempList.Add(new Button());
}
this.LEDarray.Add(tempList);
}
for (int y = 0; y < 5; y++)
{
for (int x = 0; x < 20; x++)
{
this.LEDarray[y][x].BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
this.LEDarray[y][x].FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.LEDarray[y][x].ForeColor = System.Drawing.Color.Black;
xPos = xOffset + LEDsize * x + 20;
yPos = yOffset + LEDsize * y + 20;
this.LEDarray[y][x].Location = new System.Drawing.Point(xPos, yPos);
this.LEDarray[y][x].Name = "button" + y.ToString() + x.ToString();
this.LEDarray[y][x].Size = new System.Drawing.Size(LEDsize, LEDsize);
this.LEDarray[y][x].TabIndex = 0;
this.LEDarray[y][x].UseVisualStyleBackColor = false;
}
}
for (int y = 0; y < 5; y++)
{
for (int x = 0; x < 20; x++)
{
this.Controls.Add(this.LEDarray[y][x]);
}
}
它只显示最后一行按钮。所以只是第五行,而不是前一行。当我尝试使用 Button 数组进行类似操作时,它根本不起作用。但数组方式只是 SOS 呼叫。我想用 List 来做,所以你能帮我用上面的代码让它工作吗?