gpt4 book ai didi

WPF:绑定(bind),条件属性 setter

转载 作者:行者123 更新时间:2023-12-03 23:23:52 26 4
gpt4 key购买 nike

我有一个通过绑定(bind)填充的属性。颜色属性设置颜色属性的值

<Rectangle.Fill>
<SolidColorBrush Color="{Binding Path=Color}"/>
</Rectangle.Fill>

我怎样才能将其重构为这样的条件绑定(bind):
   <Rectangle.Fill>
<SolidColorBrush Color="{Binding Path=SomeBooleanProperty ? #FF0000 : #00FF00 }"/>
</Rectangle.Fill>

最佳答案

谢谢@Jackson,最终代码如下:

<Style TargetType="Rectangle" x:Key="ColorBySuccess">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=Success}" Value="True">
<Setter Property="Fill" Value="#00FF00"/>
</DataTrigger>
</Style.Triggers>
</Style>
...
<Rectangle Fill="Green" Style="{StaticResource ColorBySuccess}" .../>

关于WPF:绑定(bind),条件属性 setter ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4608755/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com