コード例 #1
0
 public void OnNavigatedTo(Windows.Navigation.NavigationEventArgs e)
 {
     //occures when navigated to this page!
     //e.NavigationType can be New,Back,Refresh
 }
コード例 #2
0
 public void OnNavigatedFrom(Windows.Navigation.NavigationEventArgs e)
 {
 }
コード例 #3
0
 public void OnNavigatedTo(Windows.Navigation.NavigationEventArgs e)
 {
     //can be left out, base method is empty
     DataContext = null;                            //setting datacontext empty at first
     DataContext = Administration.ListeDarkRides(); //and setting it to the static ViewModel i created
 }
コード例 #4
0
 public void OnNavigatedFrom(Windows.Navigation.NavigationEventArgs e)
 {
     throw new NotImplementedException();
 }
コード例 #5
0
 public void OnNavigatedTo(Windows.Navigation.NavigationEventArgs e)
 {
     DataContext = null;                          //setting datacontext empty at first
     DataContext = Administration.listePersonnel; //and setting it to the static ViewModel i created
 }
コード例 #6
0
 public void OnNavigatedTo(Windows.Navigation.NavigationEventArgs e)
 {
     //e.Content
     //Do Stuff here!
 }