我想在DataGrid中显示一些值。一栏应显示整数值。当用户输入非数字字符时,我想告诉用户,但是该值可能会保留。 目前,我正在为DataGridRow使用ValidationTemplate。问题在于,直到在特定单元格中输入整数值之后,完整的行...完整的DataGrid才不可编辑。 如何实现通知用户输入错误的vlaue,但最终允许这样做?
这是我目前使用的样式:
<Style x:Key="errorRowStyle" TargetType="{x:Type DataGridRow}">
<Setter Property="ValidationErrorTemplate">
<Setter.Value>
<ControlTemplate>
<Grid>
<Ellipse Width="12" Height="12" Fill="Red" Stroke="Black" StrokeThickness="0.5"/>
<TextBlock FontWeight="Bold" Padding="4,0,0,0" Margin="0" VerticalAlignment="Top" Foreground="White" Text="!" />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="Validation.HasError" Value="true">
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="BorderBrush" Value="Red"/>
<Setter Property="IsEnabled" Value="True" />
<Setter Property="ToolTip" Value="{Binding RelativeSource={x:Static RelativeSource.Self}, Path=(Validation.Errors)[0]}"/>
</Trigger>
</Style.Triggers>
</Style>
更新2018年1月13日:
DataGrid: On cell validation error other row cells are uneditable/Readonly
非常接近我的问题,但不能解决输入的(无效)值 不是 进入ObservableCollection
边界(双向)传递到具有无效(字母数字)值(实际上是字符串属性,但验证器针对整数值进行验证)的单元格,但有效的整数值为。 (正如我提到的:GUI相当宽容而不是限制,它应该向用户提供提示并可视化输入的值不符合要求,但即使该无效值也应被接受。)
验证者可以成为原因吗?
namespace ConfigTool.Tools
{
public class CycleValidationRule : ValidationRule
{
public override ValidationResult Validate(object value,
System.Globalization.CultureInfo cultureInfo)
{
//DataRowView dataRowView = (value as BindingGroup).Items[0] as DataRowView;
//string no = Convert.ToString(dataRowView.Row[0]);
if (int.TryParse(value.ToString(), out int i))
{
return new ValidationResult(true, null);
}
else
{
return new ValidationResult(false,
"Cycle should be an integer value.");
}
}
}
}
答案 0 :(得分:0)
This 帮助我找到了解决方案。
我如下更改了ValidationRule类:
public class CycleValidationRule : ValidationRule
{
public override ValidationResult Validate(object value,
System.Globalization.CultureInfo cultureInfo)
{
BindingGroup group = (BindingGroup)value;
StringBuilder error = null;
foreach (var item in group.Items)
{
IDataErrorInfo info = item as IDataErrorInfo;
if (info != null)
{
if (!string.IsNullOrEmpty(info.Error))
{
if (error == null)
{
error = new StringBuilder();
}
error.Append((error.Length != 0 ? ", " : "") + info.Error);
}
}
}
if (error != null)
return new ValidationResult(false, error.ToString());
else
return new ValidationResult(true, "");
}
}
在基础实体类中,以这种方式(提取)实现IDataErrorInfo:
string IDataErrorInfo.Error
{
get
{
StringBuilder error = new StringBuilder();
if (!int.TryParse(Cycle.ToString(), out int i))
{
error.Append("Cycle should be an integer value.");
}
return error.ToString();
}
}
在我添加的XAML文件中
<DataGrid.RowValidationRules>
<local:CycleValidationRule ValidationStep="UpdatedValue" />
</DataGrid.RowValidationRules>
到DataGrid。