c#:创建复选框的 10x10 字段(和数组)
本文关键字:数组 字段 10x10 创建 复选框 | 更新日期: 2023-09-27 18:36:33
我有一个问题,我不知道为什么,但我无法弄清楚它到底是什么。
我想做的只是创建一个 10 x 10 的复选框字段作为游戏的棋盘。
我想出的东西应该使用这些盒子的数组,根据他们在字段中的坐标轻松地从盒子[0,0]到盒子[9,9]识别它们。
这是我正在努力的代码:
private void Form1_Load(object sender, EventArgs e)
{
// == OPTIONS ========================================
int xpos = 60; // Position of the first Checkbox (x)
int ypos = 60; // Position of the first Checkbox (y)
int size = 10; // Number of Rows and Columns
int spc = 30; // Space between boxes (Default:20)
// ====================================================
//other Variables
int x, y;
//Creating the Game Field
CheckBox[,] box = new CheckBox[size,size];
for (int i = 0; i < size; i++)
{
for (int j = 0; j < size; j++)
{
box[i, j] = new CheckBox();
//For Debugging Purpuses: Showing i and j next to checkBox
box[i, j].Text = i + "" + j;
//Set Position
y = i * spc + xpos;
x = j * spc + ypos;
box[i, j].Location = new Point(x,y);
this.Controls.Add(box[i, j]);
}
}
}
我从中得到的只是一列标记为 [0,0] 到 [0,9] 的复选框。
即使我在x和y或i和j之间切换,也永远不会改变。因此,即我永远不会得到一行复选框,只会总是一列。我哪里出错了?
我只得到这 10 个复选框,仅此而已。 它们似乎也没有放在彼此之上。
希望你能在这里帮助我:)谢谢。蒂莫。
默认情况下,复选框太宽。
尝试使用(例如):
int spc = 50;
并在循环中添加以下内容:
box[i, j].Width = 40;