如果我的用户单击一个按钮,我想启动一个新表单。
然后,当用户关闭第二个表单时,我想返回到初始表单。

var appLaunch = new App();
appLaunch.Show();
this.Hide();


谁能帮我吗?我的代码不允许我关闭第二个表单时返回到上次停止的位置

最佳答案

要创建新表单appLaunch,可以使用:

var appLaunch = new App();
appLaunch.Show(this);
this.Hide();


然后在FormClosedappLaunch事件上添加此代码

private void appLaunch_FormClosed(Object sender, FormClosedEventArgs e) {

   this.Owner.Show();
}

关于c# - 如何启动新表格并在关闭新表格后返回?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41108467/

10-10 18:29