我的项目中有两个表单:Form1和Form2。 Form1中有一个按钮,我想要做的就是关闭Form1并在单击该按钮时显示Form2。
首先,我试过
Form2 frm = new Form2();
frm.Show();
this.Close();
但是当Form1关闭时,Form2也关闭了。 接下来,我试过
Form2 frm = new Form2();
frm.Show();
this.Hide();
但是有一个缺点是当Form2关闭时应用程序不会退出。因此,我不得不在Form2的form_FormClosing部分添加其他源代码。
嗯......我想知道这是否正确......那么,处理这个问题的正确方法是什么?答案 0 :(得分:29)
编写Program.cs中的自动生成代码,以便在启动窗口关闭时终止应用程序。你需要调整它,以便它只在没有剩下的窗口时终止。像这样:
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
var main = new Form1();
main.FormClosed += new FormClosedEventHandler(FormClosed);
main.Show();
Application.Run();
}
static void FormClosed(object sender, FormClosedEventArgs e) {
((Form)sender).FormClosed -= FormClosed;
if (Application.OpenForms.Count == 0) Application.ExitThread();
else Application.OpenForms[0].FormClosed += FormClosed;
}
答案 1 :(得分:3)
默认情况下,第一个表单控制Windows窗体应用程序的生命周期。如果您想要几个独立的窗体,那么您的应用程序上下文应该是与窗体不同的上下文。
public class MyContext : ApplicationContext
{
private List<Form> forms;
private static MyContext context = new MyContext();
private MyContext()
{
forms = new List<Form>();
ShowForm1();
}
public static void ShowForm1()
{
Form form1 = new Form1();
context.AddForm(form1);
form1.Show();
}
private void AddForm(Form f)
{
f.Closed += FormClosed;
forms.Add(f);
}
private void FormClosed(object sender, EventArgs e)
{
Form f = sender as Form;
if (form != null)
forms.Remove(f);
if (forms.Count == 0)
Application.Exit();
}
}
要使用上下文,请将其传递给Application.Run(而不是表单)。如果要创建另一个Form1,请调用MyContext.ShowForm1()等。
public class Program
{
public void Main()
{
Application.Run(new MyContext());
}
}
答案 2 :(得分:0)
你可以这样:
form2 f2=new form2()
this.Hide();
f2.Show();
希望它有用。
答案 3 :(得分:0)
将其写入您在FormClosing
事件发生时执行的方法。
private void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
// Display a MsgBox asking the user if he is sure to close
if(MessageBox.Show("Are you sure you want to close?", "My Application", MessageBoxButtons.YesNo)
== DialogResult.Yes)
{
// Cancel the Closing event from closing the form.
e.Cancel = false;
// e.Cancel = true would close the window
}
}