Silverlight Datagrid: Changing cell styles, based on values - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T20:38:13Zhttp://stackoverflow.com/feeds/question/377030http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/377030/silverlight-datagrid-changing-cell-styles-based-on-values1Silverlight Datagrid: Changing cell styles, based on valuesMindaugas MozĊĞras2008-12-18T06:07:09Z2009-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#3781691Answer by Simon Steele for Silverlight Datagrid: Changing cell styles, based on valuesSimon Steele2008-12-18T15:23:37Z2008-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><my:DataGrid x:Name="Grid" Grid.Row="1" Margin="5" GridlinesVisibility="None" PreparingRow="Grid_PreparingRow">
<my:DataGrid.Columns>
<my:DataGridTextBoxColumn
DisplayMemberBinding="{Binding Cheese}"
Header="Cheese"></my:DataGridTextBoxColumn>
<my:DataGridTextBoxColumn
DisplayMemberBinding="{Binding Biscuit}"
Header="Biscuit"></my:DataGridTextBoxColumn>
</my:DataGrid.Columns>
</my:DataGrid>
</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 && 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#4347391Answer by Robin Kilpatrick for Silverlight Datagrid: Changing cell styles, based on valuesRobin Kilpatrick2009-01-12T07:51:27Z2009-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#4732570Answer by Rammesses for Silverlight Datagrid: Changing cell styles, based on valuesRammesses2009-01-23T15:16:13Z2009-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>