ユーザーのコントロールラベルのコンテンツをカスタム依存関係プロパティにバインドしようとしています。私の依存関係プロパティは次のとおりです。
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}"/>
私のユーザーコントロールの内部。