从ListBoxItem datatemplate获取Listbox属性

时间:2010-04-17 01:20:25

标签: .net wpf xaml

有没有办法将listboxitem的属性绑定到其拥有的列表框之一?我希望它在模板中,所以我相信排除了ElementName。

1 个答案:

答案 0 :(得分:3)

使用FindAncestor课程的Binding模式。像这样:

{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ListBox}}, Path=YourProperty}