示例#1
0
        private void OnStartup(object sender, StartupEventArgs e)
        {
            var dataContext = new ViewModel.Partition();
            var window      = new View.MainWindow(dataContext);

            window.Show();
        }
示例#2
0
 private void OnStartup(object sender, StartupEventArgs e)
 {
     var dataContext = new ViewModel.Partition();
     var window = new View.MainWindow(dataContext);
     window.Show();
 }