示例#1
0
        protected override void OnStartup(StartupEventArgs e)
        {
#if !DEBUG
            //通过特殊手段运行应用可能导致工作目录与程序文件所在目录不一致,需要调整,否则配置文件和其他数据无法加载(仅限发布模式,调试模式修改工作目录也可能导致配置和其他数据无法加载)
            var pathToExe         = Process.GetCurrentProcess().MainModule.FileName;
            var pathToContentRoot = Path.GetDirectoryName(pathToExe);
            Directory.SetCurrentDirectory(pathToContentRoot);
#endif

            var builder = new ConfigurationBuilder()
                          .SetBasePath(Directory.GetCurrentDirectory())
                          .AddJsonFile("guiAppsettings.json", optional: false, reloadOnChange: true);

            Configuration = builder.Build();

            var serviceCollection = new ServiceCollection();
            ConfigureServices(serviceCollection);

            ApplicationService = serviceCollection.BuildServiceProvider();
            ScopedService      = ApplicationService.CreateScope().ServiceProvider;

            var mainWindow = ScopedService.GetRequiredService <MainWindow>();
            this.MainWindow = mainWindow;
            mainWindow.Show();
        }
示例#2
0
        private void Application_SessionEnding(object sender, SessionEndingCancelEventArgs e)
        {
            if (!ScopedService.GetRequiredService <IOptions <AppSettings> >().Value.TriggerSessionEnding)
            {
                return;
            }
            if (!(MainWindow as MainWindow).IsHostRunning)
            {
                return;
            }

            MessageBoxResult result = MessageBox.Show($"{e.ReasonSessionEnding}. Host is Running. End session?", "Session Ending", MessageBoxButton.YesNo);

            // End session, if specified
            if (result == MessageBoxResult.Yes)
            {
                (MainWindow as MainWindow).StopHostAndClose();
            }
            if (result == MessageBoxResult.No)
            {
                e.Cancel = true;
            }
        }