Esempio n. 1
0
 public UserProfileViewModel()
 {
     Dispatcher               = CoreWindow.GetForCurrentThread().Dispatcher;
     FollowBTNCmd             = AppCommand.GetInstance();
     FollowBTNCmd.ExecuteFunc = Follow;
     RunLoadPage();
 }
Esempio n. 2
0
 public ChallengeViewModel()
 {
     IsBusy         = true;
     IsEmailChoosed = true;
     Dispatcher     = CoreWindow.GetForCurrentThread().Dispatcher;
     RunLoadPage();
     SendVerificationCmd             = AppCommand.GetInstance();
     SendVerificationCmd.ExecuteFunc = SendVerification;
 }
Esempio n. 3
0
 public LoginViewModel()
 {
     LoginCmd                = AppCommand.GetInstance();
     RegisterCmd             = AppCommand.GetInstance();
     LoginCmd.ExecuteFunc    = RunLogin;
     RegisterCmd.ExecuteFunc = RunRegister;
     Dispatcher              = CoreWindow.GetForCurrentThread().Dispatcher;
     LoadPage();
 }
Esempio n. 4
0
 public TwoStepFactorViewModel()
 {
     LoginCmd             = AppCommand.GetInstance();
     LoginCmd.ExecuteFunc = RunLogin;
     Dispatcher           = CoreWindow.GetForCurrentThread().Dispatcher;
 }