我正在编写一个名为MyUserControl的自定义用户控件。我有很多DependencyProperty,我在MainWindow中使用,其中多次定义了几个MyUserControl。我想知道的是,如何创建样式的触发器/属性将触发的自定义属性?
例如,如果我有一个自定义属性BOOL IsGoing和一个自定义特性MyBackgrong(UserControl的背景),它们都定义为:
public bool IsGoing
{
get { return (bool)this.GetValue(IsGoingProperty); }
set { this.SetValue(IsGoingProperty, value); }
}
public static readonly DependencyProperty IsGoingProperty = DependencyProperty.RegisterAttached(
"IsGoing", typeof(bool), typeof(MyUserControl), new PropertyMetadata(false));
public Brush MyBackground
{
get { return (Brush)this.GetValue(MyBackgroundProperty); }
set { this.SetValue(MyBackgroundProperty, value); }
}
public static readonly DependencyProperty MyBackgroundProperty = DependencyProperty.Register(
"MyBackground", typeof(Brush), typeof(MyUserControl), new PropertyMetadata(Brushes.Red));
如果我在MainWindow.xaml中定义我的UserControl,我如何访问触发器并设置MyBackground,这取决于IsGoing属性是否为true/false?我尝试了很多事情,但本质上,我正在努力实现以下目标:
<custom:MyUserControl MyBackground="Green" x:Name="myUC1" Margin="120.433,0,0,65.5" Height="50" Width="250" VerticalAlignment="Bottom" HorizontalAlignment="Left" >
<Style>
<Style.Triggers>
<Trigger Property="IsGoing" Value="True">
<Setter Property="MyBackground" Value="Yellow"/>
</Trigger>
</Style.Triggers>
</Style>
</custom:MyUserControl>
我希望我的解释足够好,让你理解。我已经为此工作了几天,似乎找不到解决方案。谢谢你的帮助!!!
Adrian
您的样式只需要用作UserControl.Style
并具有正确的TargetType
,而且由于优先级,您打算通过触发器更改的默认值也需要移动到样式中:
<custom:MyUserControl.Style>
<Style TargetType="custom:MyUserControl">
<Setter Property="MyBackground" Value="Green"/>
<Style.Triggers>
<Trigger Property="IsGoing" Value="True">
<Setter Property="MyBackground" Value="Yellow"/>
</Trigger>
</Style.Triggers>
</Style>
</custom:MyUserControl.Style>
这是否真的做了任何事情取决于如何使用控件定义中的属性。