コード例 #1
0
ファイル: MainWindow.xaml.cs プロジェクト: njm2ody/Deanery
 private void ShowStudentWindow(object sender, RoutedEventArgs e)
 {
     StudentWindow w = new StudentWindow();
     DataContext = w;
     w.Show(); w.Activate();
     DataContext = this;
 }
コード例 #2
0
        private void ShowStudentWindow(object sender, RoutedEventArgs e)
        {
            StudentWindow w = new StudentWindow();

            DataContext = w;
            w.Show(); w.Activate();
            DataContext = this;
        }