Add this style to your DataGrid resources and the selection border will be lost -
<DataGrid> . . <DataGrid.Resources> <Style TargetType="DataGridCell"> <Setter Property="BorderThickness" Value="0"/> <Setter Property="FocusVisualStyle" Value="{x:Null}"/> </Style> </DataGrid.Resources> . . </DataGrid>
Rohit vats
source share