我正在尝试将用户的控件标签内容绑定到自定义依赖项属性。我的依赖属性是:
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}"/>
在我的用户控件内部。