I configure the DataGrid
<DataGrid SelectionMode="Single"
SelectionUnit="FullRow"
CanUserAddRows="False"
CanUserDeleteRows="False"
CanUserResizeRows="False"
IsReadOnly="True"
>
When it's shown, full row does get highlighted and has a cell with selection border. User can press Right-Left arrows to navigate within the selected row.
How do I disable that navigation, so that the selection of DataGrid behaves like that of a ListView(with GridView) — no navigation within a row?