ListBox的項目一個DataTemplate我想改變前景色時,我選擇了一個ListBoxItem,我做到了使用這段代碼:WPF觸發了IsSelected在與混合
<DataTrigger Binding="{Binding
RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type ListBoxItem}},Path=IsSelected}" Value="True">
<Setter TargetName="descriptionTB" Property="Foreground" Value="#000"/>
</DataTrigger>
你可以找到答案here 。
但是,如果我想讓設計師在Blend中做到這一點,他如何在不鑽入xaml的情況下做到這一點?
謝謝