gpt4 book ai didi

c# - 如何在主窗体之前显示辅助窗体?

转载 作者:太空宇宙 更新时间:2023-11-03 20:07:45 24 4
gpt4 key购买 nike

我有一个应用程序提示用户在表单中输入密码。但是,主要形式显示在次要形式之后。在用户输入他/她的密码之前,如何使主窗体不显示?

编辑:

    //main form:
public Form1()
{
new InputPswrd().Show();
InitializeComponent();
}

最佳答案

只是我的 2 美分,但您可以让您的登录表单显示在第一个,并从登录表单调用您的“主”表单。

假设是典型的 Windows 窗体应用程序,您可以像这样更改 Program.cs 的内容:

static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new LoginForm()); //calling the Login form instead
}
}

在我看来,这是一种比试图阻止主窗体出现在其构造函数中更合乎逻辑的方法。

干杯

关于c# - 如何在主窗体之前显示辅助窗体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21973274/

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