예제 #1
0
        public AppStarter(bool showSplashScreen)
        {
            if (showSplashScreen)
            {
                // load the splash screen, which will load the login window

            }
            else
            {
                LoginWindow loginWin = new LoginWindow();
                loginWin.Show();
            }
        }