コード例 #1
0
ファイル: App.xaml.cs プロジェクト: nulIptr/FileManager2
        private void OnStartup(object sender, StartupEventArgs e)
        {
            var dataContext = new ViewModel.Partition();
            var window      = new View.MainWindow(dataContext);

            window.Show();
        }
コード例 #2
0
ファイル: App.xaml.cs プロジェクト: APodlinny/FileManager2
 private void OnStartup(object sender, StartupEventArgs e)
 {
     var dataContext = new ViewModel.Partition();
     var window = new View.MainWindow(dataContext);
     window.Show();
 }