Evitar paradas de tabulação de nível de célula, mas ainda permitir que as linhas tenham tabstops em um DataGrid do WPF

Desejo impedir o tabstops em células individuais, mas permitir tabstops no nível de linha

Eu pensei que poderia usar o CellStyle para desabilitar o IsTabStop em todas as células

<DataGrid.CellStyle>
    <Style TargetType="DataGridCell">
        <Setter Property="BorderThickness" Value="0"/>
        <Setter Property="IsTabStop" Value="false"/>
    </Style>
</DataGrid.CellStyle>

Mas isso impede que as linhas tenham também as tabstops

Então, pensei em ativar as tabstops nas linhas usando o RowStyle

<DataGrid.RowStyle>
    <Style TargetType="DataGridRow">
        <Setter Property="IsTabStop" Value="true"/>
    </Style>
</DataGrid.RowStyle>

Mas isso não funciona

Alguém tem alguma ideia?

questionAnswers(1)

yourAnswerToTheQuestion