Setting background colour of Silverlight Listbox - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T00:25:27Zhttp://stackoverflow.com/feeds/question/155168http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/155168/setting-background-colour-of-silverlight-listbox0Setting background colour of Silverlight ListboxDan2008-09-30T21:28:42Z2008-10-01T11:02:05Z
<p>How do I set the background colour of a listbox? I have a listbox with textblocks in it and there does not appear to be anyway that actually works to set the background colour of these controls, why is this seemingly so hard?</p>
<p>In the interests of full disclosure I asked a similar <a href="http://stackoverflow.com/questions/152376/dynamically-setting-background-colour-of-a-silverlight-control-listbox#152502">question</a> earlier</p>
http://stackoverflow.com/questions/155168/setting-background-colour-of-silverlight-listbox/155405#1554052Answer by Bryant for Setting background colour of Silverlight ListboxBryant2008-09-30T22:37:58Z2008-09-30T22:37:58Z<p>You can do this using the ListBox.ItemContainerStyle property. Very nice explanation of this can be found <a href="http://blogs.msdn.com/delay/archive/2008/03/05/lb-sv-faq-examples-notes-tips-and-more-for-silverlight-2-beta-1-s-listbox-and-scrollviewer-controls.aspx" rel="nofollow">here</a>. Based on that example, we can set the ItemContainterStyle to have a transparent background color and then wrap the ListBox in a Border (the ListBox doesn't display its background color).</p>
<pre><code><Border Background="Green">
<ListBox Background="Red">
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<Setter Property="Background" Value="Transparent"/>
</Style>
</ListBox.ItemContainerStyle>
<TextBlock Text="Hello" />
<TextBlock Text="Goodbye" />
</ListBox>
</Border>
</code></pre>
<p>If you just want to set the actual items you can set the Background to an actual color and then skip the border.</p>
http://stackoverflow.com/questions/155168/setting-background-colour-of-silverlight-listbox/157113#157113-1Answer by Dan for Setting background colour of Silverlight ListboxDan2008-10-01T11:02:05Z2008-10-01T11:02:05Z<p>Thanks Bryant :) Much appreciated!! I spent a stupid amount of time trying to work that out.</p>
<p>Can I bind to the setter value to make the colour choice dynamic?</p>