gpt4 book ai didi

c# - 在网格布局中创建动态按钮 - 创建幻方 UI

转载 作者:太空狗 更新时间:2023-10-29 21:08:18 31 4
gpt4 key购买 nike

我应该使用 Windows 窗体应用程序在 2D 中创建一个幻方。它应该看起来像这样:

Image of 3x3 magic Square with numbers and grid shown.

但是,用户应该能够决定正方形的大小(3x3、5x5、7x7 等)。我已经在控制台应用程序中编写了代码,但我不知道如何添加 2D 图形。

有人已经问过这个问题 ( How do I put my result into a GUI? ),答案之一是使用 DataGridView,但我不确定这是否是我要找的,因为我可以'不要让它看起来像图片。

有什么想法或建议吗?

最佳答案

您可以使用 TableLayoutPanel并动态添加按钮到面板。

如果您不需要与按钮交互,您可以添加Label

动态创建正方形:

public void CreateSquare(int size)
{
//Remove previously created controls and free resources
foreach (Control item in this.Controls)
{
this.Controls.Remove(item);
item.Dispose();
}

//Create TableLayoutPanel
var panel = new TableLayoutPanel();
panel.RowCount = size;
panel.ColumnCount = size;
panel.BackColor = Color.Black;

//Set the equal size for columns and rows
for (int i = 0; i < size; i++)
{
var percent = 100f / (float)size;
panel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, percent));
panel.RowStyles.Add(new RowStyle(SizeType.Percent, percent));
}

//Add buttons, if you have your desired output in an array
//you can set the text of buttons from your array
for (var i = 0; i < size; i++)
{
for (var j = 0; j < size; j++)
{
var button = new Button();
button.BackColor = Color.Lime;
button.Font = new Font(button.Font.FontFamily, 20, FontStyle.Bold);
button.FlatStyle = FlatStyle.Flat;

//you can set the text of buttons from your array
//For example button.Text = array[i,j].ToString();
button.Text = string.Format("{0}", (i) * size + j + 1);
button.Name = string.Format("Button{0}", button.Text);
button.Dock = DockStyle.Fill;

//If you need interaction with buttons
button.Click += b_Click;
panel.Controls.Add(button, j, i);
}
}
panel.Dock = DockStyle.Fill;
this.Controls.Add(panel);
}

如果您需要与按钮交互

void button_Click(object sender, EventArgs e)
{
var button = (Button)sender;
//Instead put your logic here
MessageBox.Show(string.Format("You clicked {0}", button.Text));
}

举个例子,你可以调用

CreateSquare(3);

截图:

enter image description here

关于c# - 在网格布局中创建动态按钮 - 创建幻方 UI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33968993/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com