Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图使用this.close()函数来终止一个窗口,是的,它可以工作,但是,Visual Studio没有停止调试,我需要在VS中手动按下停止按钮,如何解决这个问题?谢谢。
在你的程序中,你会有类似的东西
[STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); }
您必须关闭在 Application.Run 中作为参数传递的表单才能关闭您的应用程序。如果我们谈论的是 Winforms。