コード例 #1
0
ファイル: App.xaml.cs プロジェクト: king89/MangaViewer
        /// <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
ファイル: MangaService.cs プロジェクト: king89/MangaViewer
 public MangaService(SettingService setting)
 {
     SettingService = setting;
     //WebType = setting;
 }
コード例 #3
0
ファイル: App.xaml.cs プロジェクト: king89/MangaViewer
 // 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();
 }