无法通过Style设置DependencyProperty值

时间:2012-04-02 15:57:48

标签: wpf styles dependency-properties

专家,

我已经编写了一个名为“DimensionLine”的自定义Shape,我正在UI中的各个地方使用它。形状由两端带箭头的线组成。它工作正常,但其中一个依赖属性无法通过样式设置,我只是无法弄清楚我做错了什么。

这是代码中无法按预期工作的部分:

public class DimensionLine : Shape
{
    public static readonly DependencyProperty ArrowsSizeProperty =
        DependencyProperty.Register("ArrowsSize", typeof(Size), typeof(DimensionLine),
            new FrameworkPropertyMetadata(new Size(10, 10),
                FrameworkPropertyMetadataOptions.AffectsArrange | FrameworkPropertyMetadataOptions.AffectsMeasure, 
                debug)); <-- I added this to listen for changes to the property ...

    private static void debug(DependencyObject dObj, DependencyPropertyChangedEventArgs e)
    {
       // ERROR! this code never receives value from the Style. Why?
    }

    public Size ArrowsSize
    {
        get { return (Size) GetValue(ArrowsSizeProperty); }
        set { SetValue(ArrowsSizeProperty, value); }
    }
}

XAML:

<MyXaml.Resources>
    <Style x:Key="SmallDimensionLine" TargetType="{x:Type cc:DimensionLine}" BasedOn="{StaticResource DimensionLine}">
        <Setter Property="ArrowsSize" Value="4,1.5" />
    </Style>   
</MyXaml.Resources>

只是为了确保我为依赖项属性元数据添加了一个回调侦听器并通过断点进行了调试,但是通过该样式指定的值根本没有写入它。

是否还需要为d-property做一些其他事情以使其更适合样式?

由于

1 个答案:

答案 0 :(得分:1)

您缺少通常在创建新的WPF自定义控件时自动添加的静态构造函数

static DimensionLine ()
{
    DefaultStyleKeyProperty.OverrideMetadata(typeof(DimensionLine ),
        new FrameworkPropertyMetadata(typeof(DimensionLine )));
}