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.
我正在用 C# 编写一个基于 Windows 窗体的应用程序。
当我单击red cross(x)窗口右上角的 时,它不应该停止程序的执行。它应该转到程序的下一部分。为了让我的程序以这种方式运行,我需要做什么?
red cross(x)
您可以使用表单关闭事件来取消表单的关闭。在设计器中单击属性中的照明符号,然后双击表单关闭条目。这应该为您制作代码。它应该使函数有点像这样:
private void Form1_FormClosing(object sender, FormClosingEventArgs e) { e.Cancel = true; }
您需要添加e.Cancel将停止表单关闭的
e.Cancel