c#winform中多个按钮决定一个事件

2025-01-07 01:29:38
推荐回答(3个)
回答1:

void button1_Click(object sender, EventArgs e){
if(button1.Text == "开" && button2.Text == "开"){
// 触发事件
}else if(sender == button1){
if(button1.Text == "开")
button1.Text = "关";
else
button1.Text = "开";
}else if(sender == button2){
if(button2.Text == "开")
button2.Text = "关";
else
button2.Text = "开";
}
}

回答2:

那你还不如用checkbox。

回答3:

有先后之分吗?