每次object
被选中时,其前景自动设置为class Foo1 : Bar1 {}
class Foo2 : Bar2 {}
class Bar1 : Bar {}
class Bar2 : Bar {}
。
如何在代码隐藏中阻止此行为?
我尝试了这个,但没效果:
listviewitem
答案 0 :(得分:0)
它没有完全回答这个问题,因为此解决方案中没有任何代码。但在我看来,背后的代码不是去这里的方式。
<Style TargetType="ListBoxItem">
...
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Foreground" Value="Some color"/>
</Trigger>
</Style.Triggers>
</Style>