gpt4 book ai didi

c# - 在 C# 中显示后立即关闭窗体

转载 作者:行者123 更新时间:2023-11-30 13:33:48 26 4
gpt4 key购买 nike

我在使用表单设计器和我的项目设计的表单时遇到了一些问题,它在显示后立即关闭。这是相关代码:

namespace Grapher
{
class Program
{
static void Main(string[] args)
{
InputForm mainForm = new InputForm();
mainForm.Show();
}
}
}

我试过放入 for(;;) 但这只会让 for 挂起,我可能在做一些愚蠢的事情,对 C# 来说非常新。

提前致谢。

最佳答案

使用Application.Run() :

namespace Grapher
{
class Program
{
static void Main(string[] args)
{
Application.Run(new InputForm());
}
}
}

关于c# - 在 C# 中显示后立即关闭窗体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5333498/

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