<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
<Style x:Key="EditabaleCell" TargetType="{x:Type DataGridCell}">
|
<Setter Property="Background" Value="Yellow" />
|
<Setter Property="FontSize" Value="12" />
|
<Style.Triggers>
|
<Trigger Property="IsSelected" Value="True">
|
<Setter Property="Foreground" Value="Black" />
|
<Setter Property="BorderThickness" Value="0" />
|
</Trigger>
|
</Style.Triggers>
|
</Style>
|
</ResourceDictionary>
|