本文介绍了Main()的启动问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 嗨 我正在创建一个Winform应用程序,我需要帮助。让我解释一下我的 问题 这是我在启动时所做的,我在运行时创建一个表单(一个登录屏幕) 和那个将要求用户输入用户/密码输入密码 表格将检查本地文件进行身份验证,(加密文件)然后它 将返回true( loadLoginForm)否则为false,如果使用的clicked取消 基于我必须加载主窗体的输入。一切正常但是 问题是即使它在取消时忽略了Initialcomponent但是 Main()被执行了。如果用户点击 取消退出而不进入Main() 公共FrmMain() $ b $如何关闭应用程序b { if(LoadLoginForm()) {InitializeComponent();} 否则 {this.Close();} //这意味着用户点击取消关闭应用程序。 } [STAThread] 静态无效主要() { Application.Run(new FrmMain()); //如果用户 点击取消登录屏幕,我不希望这个执行 } 谢谢 ArunHiI am creating a Winform application and I need help. Let me explain myproblemThis is what i do on startup, I create a form (a Login screen) at runtimeand that will ask user to enter a user/password on entering the password theform will check the local file to authenticate, (encrypted file) then itwill return true in (loadLoginForm) else false if the used clicked cancelbased on the that input I have to load the main form. everything works butthe problem is even though it ignores the Initialcomponent on cancel but theMain() gets executed. How can I close the application if the user clickscancel exit out without going in Main()public FrmMain(){if (LoadLoginForm()){InitializeComponent();}else{this.Close();} // this means user clicked cancel close the application.}[STAThread]static void Main(){Application.Run(new FrmMain()); // I dont want this to execute if userclicks cancel on the login screen}ThanksArun推荐答案 为什么不在Application.Run中加载登录表单,如果他们正确登录就可以生成 主应用程序? 问候 Richard Blewett - DevelopMentor http://www.dotnetconsult.co.uk/weblog http://www.dotnetconsult.co.uk 这篇关于Main()的启动问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-20 17:38