WPF DataGrid изменение цвета строки при наведении

Использую MahApps.Metro (github) Есть DataGrid, код:

                         <DataGrid 
                            x:Name="dataGrid1"  
                            ColumnWidth="*"  
                            Foreground="#FF008FFF">

                            <DataGrid.Columns>
                                <DataGridTextColumn   CellStyle="{StaticResource NameCellStyle}"  Header="Канал"    IsReadOnly="True" Binding="{Binding Path=Channel}"  />
                                <DataGridTextColumn   CellStyle="{StaticResource NameCellStyle}"  Header="Источник"   IsReadOnly="True" Binding="{Binding Path=Source}" />
                                <DataGridTextColumn   CellStyle="{StaticResource NameCellStyle}"  Header="Посты"   IsReadOnly="True" Binding="{Binding Path=Posts}" />
                                <DataGridTextColumn  CellStyle="{StaticResource NameCellStyle}"   Header="Статус"  IsReadOnly="True"  Binding="{Binding Path=Status}"/>
                                <DataGridTextColumn   CellStyle="{StaticResource NameCellStyle}"  Header="Действие"  IsReadOnly="True"   Binding="{Binding Path=Action}"/>
                             </DataGrid.Columns>
                        </DataGrid>

    <Style x:Key="NameCellStyle" TargetType="DataGridCell">
        <Setter Property="HorizontalAlignment" Value="Center" />
         <Setter Property="FontWeight"  Value="Light" />
        <Setter Property="Height"  Value="30" />
    </Style>

При наведении на строку выгадает так: введите сюда описание изображения

При нажатии на ячейку:

введите сюда описание изображения

Как убрать выделение строки при наведении и выделение ячеек при нажатии? Спасибо


Ответы (0 шт):