在Style中触发自定义依赖项属性

时间:2016-07-25 17:52:21

标签: wpf xaml

问题

我定义了一个可重用的控件MyControl,它扩展了TextBox。

我想将Trigger设置为其依赖属性之一 所以我用Triggers为它添加了一个样式。

但是如果我将Style的TargetType设置为MyControl,我会收到'MyControl' TargetType does not match type of element 'TextBlock'的XAML警告。 如果我将其设置为TextBlock,我会收到The member "MyDependencyProperty" is not recognized or is not accessible.

的编译错误
  • 如何使用触发器定义此样式?

样品

C#代码隐藏

namespace UserControls.Local
{
    public partial class MyControl : TextBlock
    {
        #region Trogdor

        public static readonly DependencyProperty TrogdorProperty = DependencyProperty.Register(
            "Trogdor", typeof (bool), typeof (MyControl), new PropertyMetadata(default(bool)));

        public bool Trogdor
        {
            get { return (bool) GetValue(TrogdorProperty); }
            set { SetValue(TrogdorProperty, value); }
        }

        #endregion


        public MyControl()
        {
            InitializeComponent();
        }
    }
}

XAML

<TextBlock
    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:local="clr-namespace:UserControls.Local"
    mc:Ignorable="d"
    Text="BOOP!"
    x:Class="UserControls.Local.MyControl">
    <TextBlock.Style>
        <Style TargetType="{x:Type TextBlock}">
            <Setter Property="Foreground" Value="Blue"/>
            <Style.Triggers>
                <Trigger Property="Trogdor" Value="True">
                    <Setter Property="Foreground" Value="DeepPink"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </TextBlock.Style>
</TextBlock>

2 个答案:

答案 0 :(得分:4)

我发现的解决方案是“完全限定”绑定的依赖属性:

<Trigger Property="local:MyControl.Trogdor" Value="True">

答案 1 :(得分:1)

不确定您是否仍在寻找解决方案,但答案in this thread对我有用,而您的答案却没有。

它使用DataTrigger对根元素进行绑定,而不是使用Trigger:

<DataTrigger Binding="{Binding Path=Highlight, RelativeSource={RelativeSource AncestorType={x:Type Elements:DataElement}}}" Value="True">
    <Setter Property="Control.Background" Value="{DynamicResource EntryBoxHighlightBackground}"/>
</DataTrigger>

使用您的解决方案,我按下按钮,变量的值会发生变化,但样式触发器不会应用更改,就像没有通知变量的变化一样。