1

我正在尝试将用户的控件标签内容绑定到自定义依赖项属性。我的依赖属性是:

public static readonly DependencyProperty DayProperty =
        DependencyProperty.Register("Day", typeof(string), typeof(MultiSlider),   new UIPropertyMetadata("some"));

    public string Day
    {
        get { return (string)GetValue(DayProperty); }
        set { SetValue(DayProperty, value); }
    }

我想得到类似的东西

<Label Content="{TemplateBinding Day}"/>

在我的用户控件内部。

4

1 回答 1

2

通过添加解决:

DataContext="{Binding RelativeSource={RelativeSource Self}}"

到我的用户控制,然后只是:

<Label Content="{Binding Path=Day}"/>
于 2013-01-23T20:11:11.997 回答