当出现验证错误时,我试图更改DataGridCell的默认样式(在WPF Toolkit DataGrid中)。默认值为红色边框。如何放置自己的模板?

谢谢。

最佳答案

试试这个:

<!-- Cell Style -->
    <Style x:Key="CellErrorStyle" TargetType="{x:Type TextBlock}">
        <Style.Triggers>
            <Trigger Property="Validation.HasError" Value="true">
                <Setter Property="ToolTip"
                        Value="{Binding RelativeSource={RelativeSource Self},
                                Path=(Validation.Errors)[0].ErrorContent}"/>
                <Setter Property="Background" Value="Yellow"/>
            </Trigger>
        </Style.Triggers>
    </Style>

并使用它:
        <DataGrid.Columns>
            <DataGridTextColumn
                ElementStyle="{StaticResource CellErrorStyle}">
            </DataGridTextColumn>
        </DataGrid.Columns>

关于具有验证错误样式的WPF Datagrid单元,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2439827/

10-17 01:07