Inheritance: System.Windows.Forms.Form
Exemple #1
0
        private void InitAndRunSplashScreen()
        {
            var splashScreen = new ApplicationLoading();

            splashScreen.ApplicationLoaded += splashScreen_ApplicationLoaded;
            Application.Run(splashScreen);
        }
 private void InitAndRunSplashScreen()
 {
     var splashScreen = new ApplicationLoading();
     splashScreen.ApplicationLoaded += splashScreen_ApplicationLoaded;
     Application.Run(splashScreen);
 }