单击另一个按钮时如何删除按钮?

时间:2013-04-29 11:50:18

标签: c# forms

这可能非常简单,但我的问题是我需要在点击其中一个按钮时删除两个按钮。目前,我的代码将在单击第三个按钮时创建这两个按钮。我想要的是其中一个选项做某事(我已经完成了),一旦完成,让这些按钮再次消失。以下是创建两个按钮的代码:

private void btnRandom_Click(object sender, EventArgs e)
{
    Button d = new Button();
    Button c = new Button();
    d.Text = "Dice";
    c.Text = "Chance Card";
    d.Name = "btnDice";
    c.Name = "btnCC";
    d.Location = new Point(btnRandom.Location.X, btnRandom.Location.Y + 30);
    c.Location = new Point(btnRandom.Location.X, btnRandom.Location.Y + 60);
    d.Click += new EventHandler(d_Click);
    c.Click += new EventHandler(c_Click);            
    this.Controls.Add(d);
    this.Controls.Add(c);
}

以下是我尝试删除此按钮的失败

private void d_Click(object sender, EventArgs e)
{ 
     this.Controls.Remove(btnDice); // This doesnt work
}

4 个答案:

答案 0 :(得分:2)

我猜你的代码没问题,但你需要在删除控件后重新绘制表单。

this.Controls.Remove(btnDice);
this.Refresh();

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.refresh.aspx

答案 1 :(得分:1)

您可以使用

禁用该按钮
this.btnDice.Enabled = false;

或者您可以使用visible属性来隐藏它 e.g。

this.btnDice.Visible = false;

删除您可能需要刷新表单。

答案 2 :(得分:0)

您可以通过删除sender

来尝试此操作
private void d_Click(object sender, EventArgs e)
{ 
    this.Controls.Remove((Button)(sender));
    this.Refresh();
}

答案 3 :(得分:0)

为什么不让按钮消失并再次出现?

//Make the button disappear
this.btnDice.Visible = false;

//Make the button reappear
this.btnDice.Visible = true;