如何摆脱所选单元格周围的深色边框而不是行背景着色?

How to get rid of dark border around the selected cell but not the row background colorification?

我已将 False 应用到 属性 IsHitTestVisible of all我在网格中的单元格。我的目标是去除点击单元格周围的黑色粗边框,如下图红色标记所示。

问题是,虽然现在边框消失了,但行的标记也消失了。我只想摆脱边框,因为它与单击哪个单元格无关,但对哪一行有很高的兴趣。

尝试为您的 DataGridCell

添加样式
 <Style TargetType="DataGridCell">
        <Setter Property="BorderThickness" Value="0"/>
        <Setter Property="FocusVisualStyle" Value="{x:Null}" />
 </Style>