Form1 的Button 下
{
Form2 f2 = new Form2();
f2.ShowDialog(this);//
this.Close();
}
Form2 的load 下
{
//只能隐藏不能关闭
this.owner.hide();
}
2023-08-21 22:26:28
Form1 的Button 下
{
Form2 f2 = new Form2();
f2.ShowDialog(this);//
this.Close();
}
Form2 的load 下
{
//只能隐藏不能关闭
this.owner.hide();
}