WPF Xaml Custom Styling Selected Item Style in a ListBox - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T17:24:12Z http://stackoverflow.com/feeds/question/355084 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/355084/wpf-xaml-custom-styling-selected-item-style-in-a-listbox 1 WPF Xaml Custom Styling Selected Item Style in a ListBox John Batdorf 2008-12-10T04:30:46Z 2009-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> &lt;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}" &gt; &lt;Style TargetType="{x:Type ListBoxItem}"&gt; &lt;Setter Property="Background" Value="Transparent"/&gt; &lt;Setter Property="HorizontalContentAlignment" Value="{Binding Path=HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/&gt; &lt;Setter Property="VerticalContentAlignment" Value="{Binding Path=VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/&gt; &lt;Setter Property="Padding" Value="2,0,0,0"/&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type ListBoxItem}"&gt; &lt;Border x:Name="Bd" SnapsToDevicePixels="true" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Padding="{TemplateBinding Padding}"&gt; &lt;ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/&gt; &lt;/Border&gt; &lt;ControlTemplate.Triggers&gt; &lt;Trigger Property="IsSelected" Value="true"&gt; &lt;Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.HighlightTextBrushKey}}"/&gt; &lt;Setter Property="Background" TargetName="Bd" Value="#FFFFFFFF"/&gt; &lt;/Trigger&gt; &lt;MultiTrigger&gt; &lt;MultiTrigger.Conditions&gt; &lt;Condition Property="IsSelected" Value="true"/&gt; &lt;Condition Property="Selector.IsSelectionActive" Value="false"/&gt; &lt;/MultiTrigger.Conditions&gt; &lt;Setter Property="Background" TargetName="Bd" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"/&gt; &lt;Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/&gt; &lt;/MultiTrigger&gt; &lt;Trigger Property="IsEnabled" Value="false"&gt; &lt;Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/&gt; &lt;/Trigger&gt; &lt;/ControlTemplate.Triggers&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;ListBox.ItemsPanel&gt; &lt;ItemsPanelTemplate&gt; &lt;VirtualizingStackPanel Orientation="Horizontal" IsItemsHost="True" /&gt; &lt;/ItemsPanelTemplate&gt; &lt;/ListBox.ItemsPanel&gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;Image Source="{Binding Image}" /&gt; &lt;/DataTemplate&gt; &lt;/ListBox.ItemTemplate&gt; &lt;/ListBox&gt; </code></pre> http://stackoverflow.com/questions/355084/wpf-xaml-custom-styling-selected-item-style-in-a-listbox/358106#358106 3 Answer by Jobi Joy for WPF Xaml Custom Styling Selected Item Style in a ListBox Jobi Joy 2008-12-11T00:31:52Z 2008-12-11T00:31:52Z <p>Wrap the Style Tag with an ItemContainerStyle as bellow.</p> <pre><code>&lt;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}" &gt; &lt;ListBox.ItemContainerStyle&gt; &lt;Style TargetType="{x:Type ListBoxItem}"&gt; &lt;Setter Property="Background" Value="Transparent"/&gt; ---then rest of your code, but close the ItemContainerStyle as &lt;/ListBox.ItemContainerStyle&gt; 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#487137 0 Answer by Chetan Deshmukh for WPF Xaml Custom Styling Selected Item Style in a ListBox Chetan Deshmukh 2009-01-28T10:21:22Z 2009-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>