0

我想以 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 来做,所以你能帮我用上面的代码让它工作吗?

4

2 回答 2

4

for (int y = 0; y < 0; y++)for (int y = 0; y < 5; y++)控件添加按钮时更改条件。

第二个问题是您正在清除您刚刚添加到的 tempList 引用LEDarray。为每行按钮创建新列表:

for (int y = 0; y < 5; y++)
{
     // tempList.Clear() - this will remove all buttons from previous row
     tempList = new List<Button>();

     for (int x = 0; x < 20; x++)     
          tempList.Add(new Button());     

     LEDarray.Add(tempList);
}

另外我建议您增加TabIndex按钮:

this.LEDarray[y][x].TabIndex = 10 * y + x;

另一个建议 - 创建您的自定义LEDButton类并使用它:

public class LEDButton : Button
{
    public const int LEDWidth = 20;
    public const int LEDHeight = 20;

    public LEDButton()
    {
        BackColor = Color.FromArgb(0, 64, 0);
        ForeColor = Color.Black;
        FlatStyle = FlatStyle.Flat;
        Size = new Size(LEDWidth, LEDHeight);
        UseVisualStyleBackColor = false;
    }
}

用法:

// initialize array
LEDButton[,] leds = new LEDButton[5, 20];
for (int y = 0; y < leds.GetUpperBound(0); y++)
    for (int x = 0; x < leds.GetUpperBound(1); x++)
        leds[y, x] = new LEDButton()
            {
                Name = String.Format("Button{0}{1}", y, x),
                TabIndex = 10 * y + x,
                Location = new Point(LEDButton.LEDWidth * x + 20,
                                     LEDButton.LEDHeight * y + 20)
            };
// add buttons to controls
for (int y = 0; y < leds.GetUpperBound(0); y++)
    for (int x = 0; x < leds.GetUpperBound(1); x++)
         Controls.Add(leds[y, x]);
于 2012-10-28T16:04:01.413 回答
0

由于您似乎混淆了边界值,请尝试使用foreach代替:-)

foreach (var row in this.LEDArray)
{
    foreach (var button in row)
    {
        this.Controls.Add(button);
    }
}

可以说,这传达了代码的意图——添加集合中的所有按钮——也更好。

于 2012-10-28T16:08:43.627 回答