So I'm going through a style (in this case, WhistlerBlue.xaml) and I'd like to be able to use TemplateSelectors with my data.

However, this seems a fallacy because it just doesnt seem to work! How can I (Aside from carte-blanch commenting out the offending style, the ListBoxItem style) use a DataTemplateSelector with it?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Try adding a binding for the ListBoxItem.ContentTemplateSelector property:

  1. Inside the theme XAML, find the ListBoxItem control template (it's set into the "Template" property inside teh ListBoxItem style).

  2. Find the ContentPresenter element inside the template.

  3. Add the missing binding:

    <ContentPresenter
        x:Name="contentPresenter"
        Content="{TemplateBinding Content}"
        ContentTemplate="{TemplateBinding ContentTemplate}"
        ContentTemplateSelector="{TemplateBinding ContentTemplateSelector}" <-- ADD THIS LINE
        HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
        Margin="{TemplateBinding Padding}"/>
    
link|improve this answer
This doesnt make much sense... I dont have ContentPresenters in my templates. Should I? My templates look like this: <DataTemplate x:Key="GopherInfoLine"> <StackPanel Orientation="Horizontal" > <Image Source="Icons\information.png"/> <TextBlock Text="{Binding LineText}" /> </StackPanel> </DataTemplate> – Indrora Nov 30 '09 at 13:54
OK figured it out. I needed a Style for my ListViewItem with its appropriate setters. – Indrora Dec 1 '09 at 17:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.