gpt4 book ai didi

c# - 如何在 C# 中退出 Windows 窗体应用程序

转载 作者:可可西里 更新时间:2023-11-01 08:02:38 25 4
gpt4 key购买 nike

我正在用 C# 编写一个仅使用一种窗体的 Windows 窗体应用程序。当我想退出并关闭应用程序时,我添加代码

private void Defeat()
{
MessageBox.Show("Goodbye");
this.Close();
}

Form1 : Form 类,这是由 Visual Studio 自动创建的表单类。但是当这段代码运行时,我收到以下消息:

An unhandled exception of type 'System.Runtime.InteropServices.ExternalException' occurred in System.Drawing.dll

Additional information: A generic error occurred in GDI+.

消息的图片:

Error message

问题是什么?

我应该如何退出我的应用程序?

最佳答案

您首先需要引用您的字符串,以便消息框知道要做什么,然后您应该通过告诉应用程序上下文退出来退出您的应用程序。

private void Defeat()
{
MessageBox.Show("Goodbye");
Application.Exit();
}

关于c# - 如何在 C# 中退出 Windows 窗体应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15649025/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com