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.
|
1
|
|
|
|
|
|
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. XAML:
Code:
|
||
|
|
|
|
I've generally written custom ValueConverters for each data type being bound that return Visibility, Colour, etc. This gives a single point where the customisation rules are defined and I've found works very well. Robin's second link describes writing a custom ValueConverter. |
||
|
|
|
|
Actually this won't work in all examples. See these links for the 'proper' way of achieving this http://silverlight.net/forums/p/27465/93474.aspx#93474 http://silverlight.net/forums/t/27467.aspx |
||
|
|
