Catel.LogAnalyzer.App.OnStartup C# (CSharp) Method

OnStartup() protected method

Raises the E:System.Windows.Application.Startup event.
protected OnStartup ( System e ) : void
e System A that contains the event data.
return void
        protected override void OnStartup(System.Windows.StartupEventArgs e)
        {
            var bootstrapper = new Bootstrapper();
            bootstrapper.RunWithSplashScreen<ProgressNotifyableViewModel>();

            base.OnStartup(e);
        }
        #endregion