Hey! How do you change the color of the silverlight datagrid rows?!
I've tried this but it doesn't seem to work how I want it to...Random rows get colored incorrectly:
void dataGrid1_LoadingRow(object sender, DataGridRowEventArgs e)
{
var c = e.Row.DataContext as Job;
if (c != null && c.Status.Contains("complete"))
e.Row.Background = new SolidColorBrush(Colors.Green);
else
e.Row.Background = new SolidColorBrush(Colors.Red);
}
