vote up 0 vote down star

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);
        }
flag

51% accept rate

1 Answer

vote up 0 vote down

I was after this:

void dataGrid1_LoadingRow(object sender, DataGridRowEventArgs e)
        {
            DataGridRow row = e.Row;
            var c = row.DataContext as Job;         
            if (c != null && c.Status.Contains("omplete"))
                e.Row.Foreground = new SolidColorBrush(Colors.Green);
            else
                e.Row.Foreground = new SolidColorBrush(Colors.Red);
        }
link|flag
If this works for you, you should accept it as the answer. – kersny Oct 2 at 14:41
I don't see how this fixes things. Unless a clear problem can be presented the solution given this whole question should be deleted. – AnthonyWJones Oct 2 at 14:53
@Kersny Can't accept your own answer for 2days. @AnthonyWJones, people like you annoy me, grow up. – Goober Oct 2 at 15:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.