我有一個ListBox
其ItemsSource
只是一個字符串列表。我有一個改變ListBoxItem
的模板的樣式。
這就是:使用StyleSelector和ItemContainerStyle
<Style x:Key="MyStyleBase" TargetType="{x:Type ListBoxItem}" >
<Setter Property="Margin" Value="2" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ListBoxItem}">
<StackPanel x:Name="stackPanel">
<CheckBox Focusable="False"
IsChecked="{Binding Path=IsSelected, Mode=TwoWay,
RelativeSource={RelativeSource TemplatedParent} }">
<ContentPresenter/>
</CheckBox>
</StackPanel>
<ControlTemplate.Triggers>
<Trigger Property="ItemsControl.AlternationIndex" Value="1">
<Setter TargetName="stackPanel" Property="Background" Value="LightBlue" />
</Trigger>
<Trigger Property="IsSelected" Value="True">
<Setter TargetName="stackPanel" Property="Background" Value="Red"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
我用另一種樣式應用這種風格到ListBox
:
<Style x:Key="Style" TargetType="ListBox">
<Setter Property="AlternationCount" Value="2"/>
<Setter Property="ItemContainerStyle" Value="{StaticResource MyStyleBase}"/>
</Style>
現在這個偉大的工程,直到我希望每個ListBoxItem
文本的前景被改變基於它的字符串值。 我使用的是StyleSelector
此:
class MyStyleSelector : StyleSelector
{
public override Style SelectStyle(object item, DependencyObject container)
{
if((string)item == "Avatar")
return Application.Current.MainWindow.FindResource("MyStyleBlue") as Style;
return Application.Current.MainWindow.FindResource("MyStyleBlack") as Style;
}
}
這裏是我的MyStyleBlue
和MyStyleBlack
:
<Style x:Key="MyStyleBlack" BasedOn="{StaticResource MyStyleBase}" TargetType="{x:Type ListBoxItem}">
<Setter Property="Foreground" Value="Black"></Setter>
</Style>
<Style x:Key="MyStyleBlue" BasedOn="{StaticResource MyStyleBase}" TargetType="{x:Type ListBoxItem}">
<Setter Property="Foreground" Value="Blue"></Setter>
</Style>
當我在ListBoxItem
字符串「阿凡達」這是行不通的。它只顯示通常的MyStyleBase
(前景不變)。但如果ListBoxItem
是「頭像」,StyleSelector
應該將樣式更改爲MyStyleBlue
。 MyStyleBlue
應該改變前景爲藍色(但它不)。我究竟做錯了什麼?
我看到this question這說StyleSelector
s將不會工作,如果ItemContainerStyle
設置。但那麼我怎麼用StyleSelector
與ItemContainerStyle
設置?有沒有其他方法可以做我想做的事情?
謝謝,所以我刪除了'Listbox'的樣式中'ItemContainerStyle'的setter,並將contentPresenter更改爲' '並將' Foreground' setters到'