在 C# 中关闭表单
本教程将介绍在 C# 中关闭表单的方法。
使用 C# 中的 Application.Exit()
函数关闭表单
Application.Exit()
函数用于关闭 C# 中的整个应用程序。Application.Exit()
函数通知所有消息循环终止执行,并在所有消息循环终止后关闭应用程序。如果我们的应用程序仅包含一个表单,我们还可以使用 Application.Exit()
函数来关闭 Windows 表单应用程序中的表单。请参见以下示例。
using System;
using System.Windows.Forms;
namespace close_form
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button3_Click(object sender, EventArgs e)
{
Application.Exit();
}
}
}
在上面的代码中,我们在 Windows 窗体应用程序中关闭了该窗体,该窗体仅包含一个带有 C# 中的 Application.Exit()
函数的窗体。这种方法的唯一缺点是 Application.Exit()
函数会退出整个应用程序。因此,如果应用程序包含多个表单,则所有表单将被关闭。
使用 C# 中的 Form.Close()
函数关闭表单
Form.Close()
函数用于在 C# 中关闭 Windows 窗体应用程序中的窗体。我们可以在按钮单击事件中使用 Form.Close()
函数,通过单击按钮来关闭指定的表单。请参见以下示例。
using System;
using System.Windows.Forms;
namespace close_form
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
在上面的代码中,我们在 Windows 窗体应用程序中关闭了该窗体,该窗体仅包含一个带有 C# 中的 Form.Close()
函数的窗体。与以前的方法不同,此方法仅在我们的应用程序中关闭一个表单。此方法可用于在包含多个表单的应用程序中关闭单个表单。
Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.
LinkedIn