I have a DataGrid that I bind to a PagedCollectionView that is grouped and sorted. The contents of the DataGrid are not editable, although there is a click link in one column.
I limited the SelectionMode DataGrid to DataGridSelectionMode.Single, which stops the selection of multiple rows, which is good. But the selected row also has a selected cell, which draws a little lighter than the rest of the selected row and has a border.
Basically, I would like to have SelectedRow, but not SelectedCell (in terms of UI / Display).
It seems like this should be a simple question about setting the property, but it seems to me that I need to change the DataGrids template and / or damage the VisualStateManager.
I am happy to switch to another control other than DataGrid, but I need to display Grouping.
source
share