标签: .net wpf xaml
有没有办法将listboxitem的属性绑定到其拥有的列表框之一?我希望它在模板中,所以我相信排除了ElementName。
答案 0 :(得分:3)
使用FindAncestor课程的Binding模式。像这样:
FindAncestor
Binding
{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ListBox}}, Path=YourProperty}