我想将样式绑定到一个可空的颜色。如果有值-它使用该值来创建纯色画笔,否则使用另一种颜色。我不能使用绑定TargetNullValue
,因为另一种颜色是绑定。例如:
<Setter Property="Foreground">
<Setter.Value>
<PriorityBinding TargetNullValue="{Binding Foreground, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}}">
<Binding Path="Row.ForegroundColour" IsAsync="True" Converter="{StaticResource colourConverter}"/>
<Binding Path="Foreground" ElementName="me" IsAsync="True"/>
</PriorityBinding>
生成错误:
A 'Binding' cannot be set on the 'TargetNullValue' property of type 'PriorityBinding'. A 'Binding' can only be set on a DependencyProperty of a DependencyObject.'
实现简单逻辑功能的现实方法是什么?如果设置了颜色,就使用颜色,如果没有设置,就使用默认颜色(考虑到两种颜色都来自装订)?
1条答案
按热度按时间dhxwm5r41#
设置默认值。使用DataTrigger处理NULL值情况。覆盖dataTrigger中的默认值。