如何在WPF TextBox上设置正则表达式? 我希望文本框以某种预定义的格式接受输入。 有可能吗?
答案 0 :(得分:7)
您有几种选择:
ValidationRule
子类(见下文)并将其添加到Binding的Validators属性ValidationCallback
,如果值错误则抛出异常,并使用this technique轻松显示验证错误对于任意正则表达式,我通常会使用WPF的内置验证功能或对绑定属性进行验证。对于特定需求,PreviewKeyDown / PreviewTextInput或蒙版文本框可能更好。
以下是创建ValidationRule子类的方法:
public class RegexValidationRule : ValidationRule
{
... // Declare Regex property and Message property
public override ValidationResult Validate(object value, CultureInfo cultureInfo)
{
if(Regex.IsMatch((string)value))
return ValidationResult.ValidResult;
else
return new ValidationResult(false, Message);
}
}
答案 1 :(得分:0)
您可以查看已更改的事件,也可以使用所谓的蒙版文本框。