1

我正在尝试创建一个从 ListBoxItem 扩展的自定义控件,如下所示:

public class MainNavListBoxItem : ListBoxItem
{
    public MainNavListBoxItem()
    {
        this.DefaultStyleKey = typeof(MainNavListBoxItem);
    }
}

我有一个在 ResourceDictionary 中定义的样式,如下所示:

<Style TargetType="assets:MainNavListBoxItem">
        <Setter Property="Padding" Value="3"/>
        <Setter Property="HorizontalContentAlignment" Value="Left"/>
        <Setter Property="VerticalContentAlignment" Value="Top"/>
        <Setter Property="Background" Value="Transparent"/>
        <Setter Property="BorderThickness" Value="1"/>
        <Setter Property="TabNavigation" Value="Local"/>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="assets:MainNavListBoxItem">
                    <Grid Height="50">
                        <VisualStateManager.VisualStateGroups>
...

现在它像这样编译并运行良好,但是一旦我向MainNavListBoxItem类添加额外的依赖属性,我就会开始收到如下错误:

无法从文本“填充”创建“System.Windows.DependencyProperty”。

如果我在样式中重新排列 Setter 标签,它总是会报告最上面的标签。

以及我的依赖属性代码供参考:

public ImageSource ImageDark
{
    get { return (ImageSource)GetValue(ImageDarkProperty); }
    set { SetValue(ImageDarkProperty, value); }
}
public static readonly DependencyProperty ImageDarkProperty =
    DependencyProperty.Register("ImageDark", typeof(ImageSource), typeof(MainNavListBoxItem), new PropertyMetadata(0));

这里发生了什么?!我希望能够在样式中使用这个 ImageDark 依赖属性!

我已经对此错误进行了大量搜索,但似乎与此问题无关。

4

1 回答 1

4

这个问题是因为我忘记将new PropertyMetadata(0)我的依赖属性更改为new PropertyMetadata(null). 谢谢肯特。

于 2013-02-24T19:25:21.307 回答