예제 #1
0
 private void RBSNavigationSystem_ModifyViewDoneButtonPressed(object sender, EventArgs e)
 {
     CurrentViewModelWhole = _RegistrationViewModel;
 }
예제 #2
0
 private void RBSNavigationSystem_ModifyViewCancelButtonPressed(object sender, EventArgs e)
 {
     CurrentViewModelWhole = _SplashScreenViewModel;
 }
예제 #3
0
 private void RBSNavigationSystem_SplashScreenLoginButtonPressed(object sender, EventArgs e)
 {
     CurrentViewModelWhole = _AuthenticationViewModel;
 }
예제 #4
0
 private void RBSNavigationSystem_RegistrationScreenRegisterButtonClicked(object sender, EventArgs e)
 {
     CurrentViewModelWhole = _AuthenticationViewModel;
 }
예제 #5
0
 public AuthenticationWindowLogic()
 {
     InitialiseAllViewModels();
     NavigationEventsHookUp();
     CurrentViewModelWhole = _SplashScreenViewModel;
 }