I have a observable collection that binds to a data grid. I also have in the view model a color property and I want to bind the background of each row in the data grid to th
You can bind the Background in the RowStyle for DataGrid
Background
RowStyle
DataGrid
This will work if MyBackground is a Brush. You mention in your question that you have a Color, if this is the case you can use this instead
MyBackground
Brush
Color