I've got a DataGrid with a few columns, and rows.
For a selected row- I'd like to display a combobox (bound to a list of strings) for each column.
For a row that's not selected, I'd like to display a TextBlock with the selected string.
I'm aiming to do it using a binding within the DataGridColumnTemplate (and perhaps a style like here How to display combo box as textbox in WPF via a style template trigger?). How would I go about going to "Row.IsSelected" from within the Column's CellTemplate ? I suppose I need to do go up the visual tree to the Row?
Yes, you could use a RelativeSource to bind to any property of the parent DataGridRow in your CellTemplate:
So something like this should work: