How to show a welcome screen before the main screen of a winforms application is shown?
问题 I want to load a welcome screen on the startup of the application then the user clicks a button on the welcome screen and then closes the welcome screen. Finally then shows the main screen. static void Main() //startup method being called { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new ACM812_DB()); // welcome screen } When a button is clicked on the welcome screen it then hides the welcome window and then brings up the main window