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

            var bootstrapper = new Bootstrapper();
            bootstrapper.Run();
        }
コード例 #2
0
 protected override void OnStartup(StartupEventArgs e)
 {
     base.OnStartup(e);
     Bootstrapper bs = new Bootstrapper(); 
     bs.Run();
 }
コード例 #3
0
 public App()
 {
     Bootstrapper bs = new Bootstrapper();
     bs.Run(this);
 }