19

ページのデータコンテキストが他のバインディングに使用されている場合に、WPF 依存関係プロパティにバインドする方法は? (素朴な疑問)

4

2 に答える 2

34

要素のデータ コンテキストを設定する必要がありました。

XAML:

<Window x:Class="WpfDependencyPropertyTest.Window1" x:Name="mywindow">
   <StackPanel>
      <Label Content="{Binding Path=Test, ElementName=mywindow}" />
   </StackPanel>
</Window>

C#:

public static readonly DependencyProperty TestProperty =
        DependencyProperty.Register("Test",
                                    typeof(string),
                                    typeof(Window1),
                                    new FrameworkPropertyMetadata("Test"));
public string Test
{
   get { return (string)this.GetValue(Window1.TestProperty); }
   set { this.SetValue(Window1.TestProperty, value); }
}

この関連する質問も参照してください。

WPF DependencyProperties

于 2009-04-21T17:38:19.837 に答える