Пример #1
0
        /// <summary>
        /// Initializes the singleton application object.  This is the first line of authored code
        /// executed, and as such is the logical equivalent of main() or WinMain().
        /// </summary>
        public App()
        {
            this.InitializeComponent();
            this.Suspending += OnSuspending;

            SettingService = new SettingService();
            MangaService = new MangaService(SettingService); 

        }
Пример #2
0
 // Code to execute when the application is launching (eg, from Start)
 // This code will not execute when the application is reactivated
 private async void Application_Launching(object sender, LaunchingEventArgs e)
 {
     SettingService = new SettingService();
     MangaService = new MangaService(SettingService);
     await SettingService.LoadSetting();
 }