我希望防止单个单元格上的制表位,但允许行级制表位
我以为我可以使用 CellStyle 禁用所有单元格上的 IsTabStop
<DataGrid.CellStyle>
<Style TargetType="DataGridCell">
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="IsTabStop" Value="false"/>
</Style>
</DataGrid.CellStyle>
但这也可以防止行有制表位
所以我想我应该使用 RowStyle 在行上启用制表位
<DataGrid.RowStyle>
<Style TargetType="DataGridRow">
<Setter Property="IsTabStop" Value="true"/>
</Style>
</DataGrid.RowStyle>
但这也不起作用
有人有什么想法吗?