I have a WPF DataGrid which has an AlternatingRowBackground brush. It\'s configured to color every other row. I\'d like to do something on mouse over that highlights the c
What's worked for me in the past with this kind of thing, is to use a setter outside the triggers eg:
And them remove the property binding on the DataGrid itself. Although I usually do this with data triggers, and not usually with dynamic resource bindings. But still might be worth a shot