コード例 #1
0
ファイル: App.xaml.cs プロジェクト: iejeecee/mediaviewer
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            Args = e.Args;

            SplashScreen = new SplashScreen("Resources/Images/splash.png");

#if !DEBUG
              SplashScreen.Show(true, true);
#endif

            ThemeHelper.SetTheme("classic", "");

            MediaViewerBootstrapper bootstrapper = new MediaViewerBootstrapper();
            bootstrapper.Run();                     

            AutoMapperSetup.Run();
        }
コード例 #2
0
ファイル: App.xaml.cs プロジェクト: yklee0916/mediaviewer
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            Args = e.Args;

            SplashScreen = new SplashScreen("Resources/Images/splash.png");

#if !DEBUG
            SplashScreen.Show(true, true);
#endif

            ThemeHelper.SetTheme("classic", "");

            MediaViewerBootstrapper bootstrapper = new MediaViewerBootstrapper();
            bootstrapper.Run();

            AutoMapperSetup.Run();
        }