嗨,我正在处理 ac# Windows 窗体设计任务。基本上,我们已经获得了大部分代码来创建类似于蛇和梯子的工作棋盘游戏。到目前为止,我已经创建了一个 TableLayoutPanel 作为板的 gui。接下来是我坚持的部分。我必须显示所有的正方形。在项目中,他们提供了一个 SquareControl 类,该类具有每个正方形的背景颜色和字体,但我不知道如何将这些对象添加到我的 TableLayoutPanel
编辑:这是广场风格的代码 public SquareControl(Square square, BindingList player) {
this.square = square;
this.players = players;
// Set GUI properties of the whole square.
Size = new Size(SQUARE_SIZE, SQUARE_SIZE);
Margin = new Padding(0); // No spacing around the cell. (Default is 3 pixels.)
Dock = DockStyle.Fill;
BorderStyle = BorderStyle.FixedSingle;
BackColor = Color.CornflowerBlue;
LoadImageWhenNeeded();
SetTextColour();
}