public bool CheckName() { if (!AnswerValidator.IsValidText(CtrlText.Text)) { CtrlErrorText.ShowError(AnswerValidator.Error); return(false); } CtrlErrorText.ClearError(); return(true); }
bool CheckText() { if (!QuestionValidator.IsValidText(CtrlText.Text)) { CtrlErrorText.ShowError(QuestionValidator.Error); return(false); } CtrlErrorText.ClearError(); return(true); }