private void ReportUserName(Action_ReportUserName act)
 {
     if (!(string.IsNullOrEmpty(UserView.strProp_selectedLanguage)) && !(string.IsNullOrEmpty(act.userName.Trim())))
     {
         UserView.strProp_userName = act.userName;
         //UserView.strProp_helloUserMessageText = GetHelloUserMessage();
         SetGuiForStep(3);
     }
     else if (string.IsNullOrEmpty(act.userName.Trim()))
     {
         SetGuiForStep(2);
     }
     else if (string.IsNullOrEmpty(UserView.strProp_selectedLanguage))
     {
         SetGuiForStep(1);
     }
 }
 private void ReportUserName(Action_ReportUserName act)
 {
     if (!(string.IsNullOrEmpty(UserView.strProp_selectedLanguage)) && !(string.IsNullOrEmpty(act.userName.Trim())))
     {
         UserView.strProp_userName = act.userName;
         //UserView.strProp_helloUserMessageText = GetHelloUserMessage();
         SetGuiForStep(3);
     }
     else if (string.IsNullOrEmpty(act.userName.Trim()))
     {
         SetGuiForStep(2);
     }
     else if (string.IsNullOrEmpty(UserView.strProp_selectedLanguage))
     {
         SetGuiForStep(1);
     }
 }