上下文:我正在尝试制作的应用程序最初不显示表单,而只显示一个打开的文件对话框。选择文件后,应用程序可能会退出或打开表单。
调用 Application.Run() 后,我无法关闭我的应用程序。下面的示例不会生成会自行终止的应用程序。
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
var context = new Context();
Application.Run(context);
Console.Beep();
}
}
class Context : ApplicationContext
{
public Context()
{
Application.Exit();
}
}
附带说明一下,在打开表格之前我需要做哪些准备工作?我是否需要先调用 Application.Run 才能显示表单?
非常感谢!XOXO