protected bool CheckRange(UITextBox edit, int min, int max, string desc) { bool result = edit.IntValue >= min && edit.IntValue <= max; if (!result) { this.ShowWarningDialog(desc); edit.Focus(); } return(result); }
protected bool CheckEmpty(UITextBox edit, string desc) { bool result = edit.Text.IsValid(); if (!result) { this.ShowWarningDialog(desc); edit.Focus(); } return(result); }