我已经构建了一个基于 WPF 的 Treeview
项目
-子项目
如果选择了子项,我还想显示项的属性。
<StackPanel Grid.Column="2" DataContext="{Binding ElementName=myTreeView, Path=SelectedItem}">
<TextBox Text="{Binding Path=Name, Mode=TwoWay}" />
<TextBox Text="{Binding RelativeSource={???} Path=Name, Mode=TwoWay}" />
</StackPanel>
我想我需要使用 RelativeSource 语句,但不太确定如何使用。