示例#1
0
        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);
        }
示例#2
0
        protected bool CheckEmpty(UITextBox edit, string desc)
        {
            bool result = edit.Text.IsValid();

            if (!result)
            {
                this.ShowWarningDialog(desc);
                edit.Focus();
            }

            return(result);
        }