DataGrid放置的WPF RowValidation列

时间:2014-09-04 07:49:06

标签: c# wpf datagrid

是否可以将RowValidation列放在左侧?例如,在右侧还是其他地方?

外观如何:

enter image description here

我希望它看起来如何:

enter image description here

1 个答案:

答案 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>