Setting background colour of Silverlight Listbox - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T00:25:27Z http://stackoverflow.com/feeds/question/155168 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/155168/setting-background-colour-of-silverlight-listbox 0 Setting background colour of Silverlight Listbox Dan 2008-09-30T21:28:42Z 2008-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#155405 2 Answer by Bryant for Setting background colour of Silverlight Listbox Bryant 2008-09-30T22:37:58Z 2008-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>&lt;Border Background="Green"&gt; &lt;ListBox Background="Red"&gt; &lt;ListBox.ItemContainerStyle&gt; &lt;Style TargetType="ListBoxItem"&gt; &lt;Setter Property="Background" Value="Transparent"/&gt; &lt;/Style&gt; &lt;/ListBox.ItemContainerStyle&gt; &lt;TextBlock Text="Hello" /&gt; &lt;TextBlock Text="Goodbye" /&gt; &lt;/ListBox&gt; &lt;/Border&gt; </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 -1 Answer by Dan for Setting background colour of Silverlight Listbox Dan 2008-10-01T11:02:05Z 2008-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>