这甚至可能吗?
<DataTrigger
Binding = {Binding Path=SelectedItem,
RelativeSource={RelativeSource FindAncestor, AncestorType=ListBox}}
Value = {Binding}
/>
我知道Value
不是DependencyProperty
,但有没有办法让DataTrigger
比较对象引用相等?
我正在尝试在我选择的项目列表框中设置所选项目的样式。目前,我的解决方法是在我的模型上拥有IsSelected
属性,但这是一个相当丑陋的黑客,并要求我的VM
适当地保持IsSelected
状态。