5

首先,我显示一个登录表单。当用户输入正确的 id 和密码时,我想显示另一个表单,然后关闭登录表单。以下是我启动登录表单的方式。

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

现在,当我想显示主窗体时,我调用了类的dispose()方法FrmLogin,但应用程序立即结束。我的解决方案是将class的visible属性更改为,我知道这是不对的,请提出一种解决方法。FrmLoginfalse

4

4 回答 4

2

登录完成后您如何制作第二个 APplication.Run ;) 等待它关闭,执行登录,然后 Application.Run 为第二个表单,这是 MAIN 表单。

顺便说一句,“FrmLogin”违反了 .NET 命名模式——你似乎是一个老 VB 手(这是一种模式)。它应该是登录表单。

于 2012-06-15T09:37:35.433 回答
2
var loginForm = new LoginForm();
if(loginForm.ShowDialog() != dont_remember_see_intellisense_or_docs.OK)
  return;
var mainForm = new MainForm();
Application.Run(mainForm);

这会将登录表单显示为对话框。在您的登录表单中,您必须将返回值设置为适当的值(即确定)以显示主表单

于 2012-06-15T09:50:38.570 回答
1

您可以将登录表单显示为对话框,如果登录成功,则可以将主表单运行为:

static class Program
{
     public static bool isValid = false;
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        using (FrmLogin login = new FrmLogin())
        { 
            login.ShowDialog(); 
            if (isValid)
            {           
                Application.Run(new MainForm());
            }
        }
    }
}

在您的 FrmLogin 中,验证用户并设置DialogResultOk. 在这里,我在按钮单击事件中做到了。

private void btnLogin_Click(object sender, EventArgs e)
{

    Program.isValid= true; // impliment this as method 
    if(Program.isValid)
    {
      this.DialogResult = DialogResult.OK;
      // or this.Close();
    }
    else
    {
      //else part code
    }
}
于 2012-06-15T09:51:42.267 回答
-2

要从 FrmLogin 显示另一个表单 myForm 只需调用

myForm window = new window()
window.MDIparent = ParentForm;
window.Show();
于 2012-06-15T10:51:43.303 回答