DataBound WPF ListBox Styling on ListBoxItems - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T13:37:25Zhttp://stackoverflow.com/feeds/question/395651http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/395651/databound-wpf-listbox-styling-on-listboxitems1DataBound WPF ListBox Styling on ListBoxItemsJohn Batdorf2008-12-28T01:04:09Z2008-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> <ComboBoxItem Width="Auto" Height="Auto" Content="ComboBoxItem" >
<ComboBoxItem.Foreground>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF6F6F6F" Offset="0"/>
<GradientStop Color="#FFD1D1D1" Offset="1"/>
</LinearGradientBrush>
</ComboBoxItem.Foreground>
</ComboBoxItem>
</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#3956581Answer by Brad Leach for DataBound WPF ListBox Styling on ListBoxItemsBrad Leach2008-12-28T01:11:33Z2008-12-28T01:11:33Z<p>You can achieve this by using Styles:</p>
<pre><code><ComboBox ItemsSource="{Binding}">
<ComboBox.Resources>
<Style TargetType="{x:Type ComboBoxItem}">
<Setter Property="Foreground">
<Setter.Value>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF6F6F6F" Offset="0"/>
<GradientStop Color="#FFD1D1D1" Offset="1"/>
</LinearGradientBrush>
</Setter.Value>
</Setter>
</Style>
</ComboBox.Resources>
</ComboBox>
</code></pre>
<p>Hope this helps!</p>