我做了一个计时器,但是当我按下一个按钮时,什么也没有发生。
我的代码是:
private void button3_Click(object sender, EventArgs e)
{
Instellingen form = new Instellingen();
form.Show();
}
Instellingen.cs 代码:
public partial class Instellingen : Form
{
public Instellingen()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (radioButton1.Checked == true)
{
MessageBox.Show("text", "text");
}
}
}
button3 事件甚至没有触发(通过添加断点确认,它没有到达那里)