查看以下 XAML 片段:
<DataGridTextColumn.CellStyle>
<Style TargetType="{x:Type DataGridCell}">
<Setter Property="Background" Value="White"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Block.TextAlignment" Value="Center"/>
<Setter Property="Background">
<Setter.Value>
<SolidColorBrush>
<SolidColorBrush.Color>
<MultiBinding Converter="{StaticResource VAPBrushConverter}">
<Binding RelativeSource="{RelativeSource FindAncestor, AncestorType={x:Type DataGridCell}}"/>
<Binding RelativeSource="{RelativeSource FindAncestor, AncestorType={x:Type UserControl}}"/>
</MultiBinding>
</SolidColorBrush.Color>
</SolidColorBrush>
</Setter.Value>
</Setter>
</Style>
</DataGridTextColumn.CellStyle>
只有当我在数据网格上滚动时才会调用 IValueConverter 。在 DataGridCell 内部有一个 TextBlock,并且唯一一次调用 IValueConverter 是 TextBlock.Text 属性为 DependencyProperty.UnsetValue 时。
有人可以告诉我何时调用 IValueConverter,如果我目前可以用我的代码做些什么来解决这个问题?澄清一下 - 问题是当我在 DataGrid 上滚动时,只有 IValueConverter 设置了背景。