我想在这个列表中添加我的按钮
List<List<Button>> buttonss = new List<List<Button>>();
这就是我创建按钮的方式:
Button[][] buttons;
在方法中(也尝试填充列表但不正确):
for (int r = 0; r < row; r++)
{
for ( int c = 0; c < col; c++)
{
buttons[r][c] = new Button();
buttonss.Add(buttons[r][c]);
}
}
我如何使用此按钮数组填充此列表(我的数组必须是Button[][]
而不是Button[,]
因为当我执行 xml 序列化等其他事情时它会让我的生活更轻松