DataBound WPF ListBox Styling on ListBoxItems - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T13:37:25Z http://stackoverflow.com/feeds/question/395651 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/395651/databound-wpf-listbox-styling-on-listboxitems 1 DataBound WPF ListBox Styling on ListBoxItems John Batdorf 2008-12-28T01:04:09Z 2008-12-28T01:11:33Z <p>I have a listbox that during development I had the items in the list box hardcoded and styled. This is how the items were styled.</p> <pre><code> &lt;ComboBoxItem Width="Auto" Height="Auto" Content="ComboBoxItem" &gt; &lt;ComboBoxItem.Foreground&gt; &lt;LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"&gt; &lt;GradientStop Color="#FF6F6F6F" Offset="0"/&gt; &lt;GradientStop Color="#FFD1D1D1" Offset="1"/&gt; &lt;/LinearGradientBrush&gt; &lt;/ComboBoxItem.Foreground&gt; &lt;/ComboBoxItem&gt; </code></pre> <p>But when I set the ItemsSource property to a data object, It said my xaml was invalid. Presumably because it was adding an item through XAML.</p> <p>How can I create the style for each item, as noted in the above XAML, once you have it bound to a datasource?</p> <p>Thanks.</p> http://stackoverflow.com/questions/395651/databound-wpf-listbox-styling-on-listboxitems/395658#395658 1 Answer by Brad Leach for DataBound WPF ListBox Styling on ListBoxItems Brad Leach 2008-12-28T01:11:33Z 2008-12-28T01:11:33Z <p>You can achieve this by using Styles:</p> <pre><code>&lt;ComboBox ItemsSource="{Binding}"&gt; &lt;ComboBox.Resources&gt; &lt;Style TargetType="{x:Type ComboBoxItem}"&gt; &lt;Setter Property="Foreground"&gt; &lt;Setter.Value&gt; &lt;LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"&gt; &lt;GradientStop Color="#FF6F6F6F" Offset="0"/&gt; &lt;GradientStop Color="#FFD1D1D1" Offset="1"/&gt; &lt;/LinearGradientBrush&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;/ComboBox.Resources&gt; &lt;/ComboBox&gt; </code></pre> <p>Hope this helps!</p>