2015-10-14 49 views
1

我有一個ListBoxItemsSource只是一個字符串列表。我有一個改變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; 
    } 
} 

這裏是我的MyStyleBlueMyStyleBlack

<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應該將樣式更改爲MyStyleBlueMyStyleBlue應該改變前景爲藍色(但它不)。我究竟做錯了什麼?

我看到this question這說StyleSelector s將不會工作,如果ItemContainerStyle設置。但那麼我怎麼用StyleSelectorItemContainerStyle設置?有沒有其他方法可以做我想做的事情?

回答

1

當您使用ItemStyleSelector時,項目樣式將從該樣式選擇器返回,因此同時設置ItemContainerStyle不起作用。

但是,這並不重要,因爲從MyStyleSelector返回的樣式已基於MyStyleBase。根本不需要將ItemContainerStyle設置爲MyStyleBase

+0

謝謝,所以我刪除了'Listbox'的樣式中'ItemContainerStyle'的setter,並將contentPresenter更改爲''並將' Foreground' setters到'

相關問題