如何让我的所有内部代码像使用 Application.Restart() 一样工作,但实际上不必关闭并重新打开程序?
问问题
10141 次
1 回答
6
根据您的应用程序的设计,它可以像启动主表单的新实例并关闭任何现有的表单实例一样简单。表单变量之外的任何应用程序状态也需要重置。对于听起来像您正在搜索的应用程序,没有神奇的“重置”按钮。
一种方法是添加一个循环以Program.cs
在“重置”后表单关闭时保持应用程序运行:
static class Program
{
public static bool KeepRunning { get; set; }
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
KeepRunning = true;
while(KeepRunning)
{
KeepRunning = false;
Application.Run(new Form1());
}
}
}
并在您的表单(或工具栏等)中将KeepRunning
变量设置为true
:
private void btnClose_Click(object sender, EventArgs e)
{
// close the form and let the app die
this.Close();
}
private void btnReset_Click(object sender, EventArgs e)
{
// close the form but keep the app running
Program.KeepRunning = true;
this.Close();
}
于 2012-11-01T18:58:21.590 回答