コード例 #1
0
ファイル: StudentView.xaml.cs プロジェクト: borja94/TFM-MVVM
 public StudentView()
 {
     _studentCollectionView = new StudentCollectionView();
     _studentFormView       = new StudentFormView();
     InitializeComponent();
     studentCollectionFrame.Navigate(_studentCollectionView);
     studentFormFrame.Navigate(_studentFormView);
     _studentCollectionView.setStudentFormView(_studentFormView);
     _studentFormView.setStudentCollectionView(_studentCollectionView);
 }
コード例 #2
0
 public void setStudentCollectionView(StudentCollectionView studentCollectionView)
 {
     _studentCollectionView = studentCollectionView;
 }