C# 如何在关闭窗体之前将消息从一个窗体发送到另一个窗体
本文关键字:窗体 一个 另一个 消息 | 更新日期: 2023-09-27 18:19:03
我有一个程序,我希望它在关闭前要求确认。它只是一个简单的表格,带有问题、yes
和no
按钮。如何将单击哪个按钮的信息发送回主窗体?我找到的所有解决方案都是用于与打开的两个表单进行通信,但是当在第二个表单中选择一个按钮时,它将关闭。有什么提示或想法吗?
您描述的第二种形式类似于MessageBox
...您可以使用其直接实现作为对话框。未经测试的示例:
DialogResult dr = MessageBox.Show("Are you Sure?",
"Confirm Exit?",
MessageBoxButtons.YesNo);
if (dr==DialogResult.Yes)
{
// Do work If Yes
}else //if( dr == DialogResult.No)
{
// Do work if No
}
请参阅 MSDN 了解MessageBox
我倾向于这样做。
子表单代码:
private bool _bDoSomething=false;
public bool showForm()
{
this.ShowDialog();
return _bDoSomething;
}
private void btnOK_Click(object sender, EventArgs e)
{
_bDoSomething=true;
this.Hide();
}
然后是父窗体的这种代码:
dlgMyForm dlgMyForm = new dlgMyForm();
if (dlgMyForm.showForm())
{
//do something
}
将主窗体中的布尔值声明为公共
值 public Boolean check =false;
在第二个窗体的 FormClosing 事件中执行以下操作
private void Form2_FormClosing(Object sender, FormClosingEventArgs e)
{
DialogResult answer = MessageBox.Show("[Your text]",MessageBoxButtons.YesNo)
if(answer == DialogResult.Yes)
{
Form1.check=True; //if button yes is clicked
// set the form1 check variable to True and closes form2
}
else
{
Form1.check=False; //if button no is clicked
// set the form1 check variable to False and cancel form
// closing
e.Cancel=True;
}
}
使用布尔变量检查在 form1 中进行进一步处理