Silverlight Datagrid: Changing cell styles, based on values - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T20:38:13Z http://stackoverflow.com/feeds/question/377030 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/377030/silverlight-datagrid-changing-cell-styles-based-on-values 1 Silverlight Datagrid: Changing cell styles, based on values Mindaugas MozĊĞras 2008-12-18T06:07:09Z 2009-01-23T15:16:12Z <p>I have some data. I want to go through that data and change cells (for example - Background color), if that data meets a certain condition. Somehow, I've not been able to figure it out how to do this seemingly easy thing in Silverlight.</p> http://stackoverflow.com/questions/377030/silverlight-datagrid-changing-cell-styles-based-on-values/378169#378169 1 Answer by Simon Steele for Silverlight Datagrid: Changing cell styles, based on values Simon Steele 2008-12-18T15:23:37Z 2008-12-18T15:23:37Z <p>This is slightly old code (from before RTM), but does something like what you're looking for. It checks some data on an object in a row and then sets the colour of the row accordingly.</p> <p><strong>XAML:</strong></p> <pre><code>&lt;my:DataGrid x:Name="Grid" Grid.Row="1" Margin="5" GridlinesVisibility="None" PreparingRow="Grid_PreparingRow"&gt; &lt;my:DataGrid.Columns&gt; &lt;my:DataGridTextBoxColumn DisplayMemberBinding="{Binding Cheese}" Header="Cheese"&gt;&lt;/my:DataGridTextBoxColumn&gt; &lt;my:DataGridTextBoxColumn DisplayMemberBinding="{Binding Biscuit}" Header="Biscuit"&gt;&lt;/my:DataGridTextBoxColumn&gt; &lt;/my:DataGrid.Columns&gt; &lt;/my:DataGrid&gt; </code></pre> <p><strong>Code:</strong></p> <pre><code>this.Grid.AlternatingRowBackground = null; private void Grid_PreparingRow(object sender, DataGridRowEventArgs e) { CheesyClass c = e.Row.DataContext as CheesyClass; if (c != null &amp;&amp; c.Cheese == "cheddar") { e.Row.Background = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(255, 255, 125, 125)); } } </code></pre> http://stackoverflow.com/questions/377030/silverlight-datagrid-changing-cell-styles-based-on-values/434739#434739 1 Answer by Robin Kilpatrick for Silverlight Datagrid: Changing cell styles, based on values Robin Kilpatrick 2009-01-12T07:51:27Z 2009-01-12T07:51:27Z <p>Actually this won't work in all examples. See these links for the 'proper' way of achieving this <a href="http://silverlight.net/forums/p/27465/93474.aspx#93474" rel="nofollow">http://silverlight.net/forums/p/27465/93474.aspx#93474</a> <a href="http://silverlight.net/forums/t/27467.aspx" rel="nofollow">http://silverlight.net/forums/t/27467.aspx</a> </p> http://stackoverflow.com/questions/377030/silverlight-datagrid-changing-cell-styles-based-on-values/473257#473257 0 Answer by Rammesses for Silverlight Datagrid: Changing cell styles, based on values Rammesses 2009-01-23T15:16:13Z 2009-01-23T15:16:13Z <p>I've generally written custom ValueConverters for each data type being bound that return Visibility, Colour, etc.</p> <p>This gives a single point where the customisation rules are defined and I've found works very well.</p> <p>Robin's second link describes writing a custom ValueConverter.</p>