boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

Setting WPF datagrid selected row color at application level

Updated on     Kisan Patel

Problem:

How to Set WPF datagrid selected row color at application level?

Solution:

To set the Background for a selected DataGridRow/DataGridCell at application level you can add the following Style to App.xaml

<Application ...>
     <Application.Resources>
         <Style TargetType="DataGridCell">
            <Style.Triggers>
                 <Trigger Property="IsSelected" Value="True">
                     <Setter Property="Background" Value="LightBlue"/>
                 </Trigger>
            </Style.Triggers>
         </Style>
     </Application.Resources>
</Application>

WPF