WPF Xaml Custom Styling Selected Item Style in a ListBox - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T17:24:12Zhttp://stackoverflow.com/feeds/question/355084http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/355084/wpf-xaml-custom-styling-selected-item-style-in-a-listbox1WPF Xaml Custom Styling Selected Item Style in a ListBoxJohn Batdorf2008-12-10T04:30:46Z2009-10-21T14:08:26Z
<p>I have a list box that scrolls images horizontally.</p>
<p>I have the following XAML I used blend to create it. It originally had a x:Key on the Style TaregetType line, MSDN said to remove it, as I was getting errors on that. Now I'm getting this error:</p>
<p>Error 3 Operation is not valid while ItemsSource is in use. Access and modify elements with ItemsControl.ItemsSource instead. </p>
<p>I don't understand how to apply all of this junk that way, I've tried several thing, nothing is working.</p>
<p>My goal is to have the selected item's background be white, not blue. Seems like a lot of work for something so small!</p>
<p>Thanks.</p>
<pre><code> <ListBox ItemsSource="{Binding Source={StaticResource WPFApparelCollection}}"
Grid.Row="1" Margin="2,26,2,104" ScrollViewer.VerticalScrollBarVisibility="Hidden"
ScrollViewer.HorizontalScrollBarVisibility="Hidden" SelectionMode="Single"
x:Name="list1" MouseLeave="List1_MouseLeave" MouseMove="List1_MouseMove" Style="{DynamicResource ListBoxStyle1}" >
<Style TargetType="{x:Type ListBoxItem}">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="HorizontalContentAlignment" Value="{Binding Path=HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
<Setter Property="VerticalContentAlignment" Value="{Binding Path=VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
<Setter Property="Padding" Value="2,0,0,0"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ListBoxItem}">
<Border x:Name="Bd" SnapsToDevicePixels="true" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Padding="{TemplateBinding Padding}">
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsSelected" Value="true">
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.HighlightTextBrushKey}}"/>
<Setter Property="Background" TargetName="Bd" Value="#FFFFFFFF"/>
</Trigger>
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="IsSelected" Value="true"/>
<Condition Property="Selector.IsSelectionActive" Value="false"/>
</MultiTrigger.Conditions>
<Setter Property="Background" TargetName="Bd" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"/>
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
</MultiTrigger>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel
Orientation="Horizontal"
IsItemsHost="True" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Image Source="{Binding Image}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</code></pre>
http://stackoverflow.com/questions/355084/wpf-xaml-custom-styling-selected-item-style-in-a-listbox/358106#3581063Answer by Jobi Joy for WPF Xaml Custom Styling Selected Item Style in a ListBoxJobi Joy2008-12-11T00:31:52Z2008-12-11T00:31:52Z<p>Wrap the Style Tag with an ItemContainerStyle as bellow.</p>
<pre><code><ListBox ItemsSource="{Binding Source={StaticResource WPFApparelCollection}}"
Grid.Row="1" Margin="2,26,2,104" ScrollViewer.VerticalScrollBarVisibility="Hidden"
ScrollViewer.HorizontalScrollBarVisibility="Hidden" SelectionMode="Single"
x:Name="list1" MouseLeave="List1_MouseLeave" MouseMove="List1_MouseMove" Style="{DynamicResource ListBoxStyle1}" >
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}">
<Setter Property="Background" Value="Transparent"/> ---then rest of your code, but close the ItemContainerStyle as </ListBox.ItemContainerStyle> at the end of the Style tag
</code></pre>
http://stackoverflow.com/questions/355084/wpf-xaml-custom-styling-selected-item-style-in-a-listbox/487137#4871370Answer by Chetan Deshmukh for WPF Xaml Custom Styling Selected Item Style in a ListBoxChetan Deshmukh2009-01-28T10:21:22Z2009-01-28T10:21:22Z<p>Hi, How I can bind following XMl file to listBox so that ListBoxItems will show text as Name from the nodes and Value as Extension in the ListBox...?</p>
<p>
First Name
8422
Second Name
8414
Third Name
8558
Nikhil
8558
</p>
<p></p>
<p>Thanks, Chetan Deshmukh</p>