初学者对this.close()函数的困惑

时间:2012-12-08 19:47:17

标签: c#

我试图使用this.close()函数来终止一个窗口,是的,但是,Visual Studio没有停止调试,我需要手动按下VS中的停止按钮,如何解决这个问题?感谢。

1 个答案:

答案 0 :(得分:1)

在你的程序中你会有类似的东西

[STAThread]
static void Main()
{
    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    Application.Run(new Form1());
}

您必须关闭在Application.Run中作为参数传递的表单才能关闭您的应用程序。如果我们谈论Winforms。