C#里怎么用代码删除动态生成的按钮
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#里怎么用代码删除动态生成的按钮相关的知识,希望对你有一定的参考价值。
如题;
for (int i = 0; i < 9; i++)
for (int j = 0; j < 9; j++)
Button bt = new Button();
bt.Size = new Size(20, 20);
bt.Location = new Point(i * 20, j * 20 + 50);
bt.TabStop = false;
Controls.Add(bt);
像这样生成的9X9的按钮,怎样用代码全部删除,最好这个代码在一个click事件里,像一键清除那样!求大神指点!
Clear(this);
//label1.Text = i.ToString();
private void Clear(Control ctrl)
foreach (Control c in Controls)
if (c is Button)
c.Dispose();
//i++;
Clear(c);
本回答被提问者采纳 参考技术B 如果你动态生成的控件是放在一个容器里面的(panel),那么直接panel.Controls.Clear(); 参考技术C 创建按钮的时候,把它们都存到一个List里面,删除的时候就方便了。 参考技术D Panel p = new Panel();
public Form1()
InitializeComponent();
p.Width = 500;
p.Height = 500;
p.BackColor = Color.Black;
p.Location = new Point(0, 0);
for (int i = 0; i < 9; i++)
for (int j = 0; j < 9; j++)
Button bt = new Button();
bt.Size = new Size(20, 20);
bt.Location = new Point(i * 20, j * 20 + 50);
bt.TabStop = false;
bt.Click+=new EventHandler(bt_Click);
p.Controls.Add(bt);
this.Controls.Add(p);
private void bt_Click(object sender, EventArgs e)
Button b=(Button)sender;
b.Hide();
请采纳! 第5个回答 2013-05-27 就跟楼下说的那样,最好放在一个panel(面板)里,这样只要清除面板就可以了,清楚代码楼下已经列出
以上是关于C#里怎么用代码删除动态生成的按钮的主要内容,如果未能解决你的问题,请参考以下文章
C# winform 程序 怎么动态设置BackgroundImage属性。这个图片的类型是啥 如果用代码编写我该怎么写