我有一个数据网格,其中我有一个非整数类型的数量字段。现在我想限制我的用户只输入正整数。我不想要处理数据网格键事件输入的解决方案。有什么建议么?
这是我正在使用的转换器
public class ValueConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{ return value; }
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (!OnlyPositiveIntergerAllowed(value.ToString()))
{
string s = Regex.Replace(value.ToString(), @"[^0-9]+", string.Empty);
if(s=="")
return 0;
else
return s;
}
if (value is string && (string)value == "")
{
return 0;
}
return value;
}
private static bool OnlyPositiveIntergerAllowed(string text)
{
var regex = new Regex("[^0-9]+"); //regex that matches disallowed text
return !regex.IsMatch(text);
}
}
注意:它工作正常(即如果 123dasd。它在失去焦点 123 上转换),但我允许用户输入(dasd。)。