作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望我的椭圆现在是红色的。
<UserControl x:Class="BenchmarkPlus.PMT.UI.Views.NotificationIndicator"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:Models="clr-namespace:BenchmarkPlus.PMT.UI.Models"
mc:Ignorable="d"
d:DesignHeight="300"
d:DesignWidth="300"
x:Name="root"
DataContext="{x:Static Models:NotificationType.Error}">
<Grid>
<Ellipse>
<Ellipse.Style>
<Style TargetType="Ellipse">
<Setter Property="Fill"
Value="Blue" />
<Style.Triggers>
<DataTrigger Binding="{Binding}"
Value="{x:Static Models:NotificationType.Info}">
<Setter Property="Fill"
Value="Green" />
</DataTrigger>
<DataTrigger Binding="{Binding}"
Value="{x:Static Models:NotificationType.Error}">
<Setter Property="Fill"
Value="Red" />
</DataTrigger>
</Style.Triggers>
</Style>
</Ellipse.Style>
</Ellipse>
</Grid>
</UserControl>
最佳答案
这似乎在 VS2010 设计器中不起作用,但在 VS11 中起作用。切换到 VS11 beta 的另一个原因 :)
关于wpf - 尝试绑定(bind)到 DataTrigger 内的枚举,为什么它不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10250925/
我是一名优秀的程序员,十分优秀!