Example #1
0
 public StudentView()
 {
     _studentCollectionView = new StudentCollectionView();
     _studentFormView       = new StudentFormView();
     InitializeComponent();
     studentCollectionFrame.Navigate(_studentCollectionView);
     studentFormFrame.Navigate(_studentFormView);
     _studentCollectionView.setStudentFormView(_studentFormView);
     _studentFormView.setStudentCollectionView(_studentCollectionView);
 }
Example #2
0
 public void setStudentCollectionView(StudentCollectionView studentCollectionView)
 {
     _studentCollectionView = studentCollectionView;
 }