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 に答える