是否可以将RowValidation
列放在左侧?例如,在右侧还是其他地方?
外观如何:
我希望它看起来如何:
答案 0 :(得分:1)
虽然我无法100%确认这一点,但我认为您的要求是不可能的。 一个DataGrid.RowValidationErrorTemplate
属性,使您可以定义在验证错误发生时显示的自定义模板,但它不允许您指定它的位置。根据MSDN上的DataGrid.RowValidationErrorTemplate
Property页面:
以下示例使用更明显的指示符替换默认行验证反馈。当用户输入无效值时,带有白色感叹号的红色圆圈会在行标题中显示为 。
<DataGrid.RowValidationErrorTemplate>
<ControlTemplate>
<Grid Margin="0,-2,0,-2"
ToolTip="{Binding RelativeSource={RelativeSource
FindAncestor, AncestorType={x:Type DataGridRow}},
Path=(Validation.Errors)[0].ErrorContent}">
<Ellipse StrokeThickness="0" Fill="Red"
Width="{TemplateBinding FontSize}"
Height="{TemplateBinding FontSize}" />
<TextBlock Text="!" FontSize="{TemplateBinding FontSize}"
FontWeight="Bold" Foreground="White"
HorizontalAlignment="Center" />
</Grid>
</ControlTemplate>
</DataGrid.RowValidationErrorTemplate>