public override bool InputControl(string fullText) { if (fullText == null) { return(false); } if (fullText.Length == 1) { if ("-".Equals(fullText) || RegexCheck.IsInteger(fullText)) { return(true); } else { return(false); } } return(RegexCheck.IsInteger(fullText)); }