Resources/XAML/ResourceDictionaries/DataGridStyles.xaml

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:theme="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero2">
   <!-- Color of the filter by text box and font color -->
   <Style x:Key="ConfirmationSearchTextBox" TargetType="TextBox">
       <Setter Property="Background" Value="#ffffff" />
       <Setter Property="Foreground" Value="#333333" />
       <Setter Property="BorderThickness" Value="0" />
       <Setter Property="FontSize" Value="12" />
       <Setter Property="Padding" Value="15 10" />
       <Setter Property="VerticalAlignment" Value="Center" />
       <Setter Property="Margin" Value="0 10" />
       <Setter Property="Template">
           <Setter.Value>
               <ControlTemplate TargetType="{x:Type TextBoxBase}">
                   <Border x:Name="border" CornerRadius="20" Background="{TemplateBinding Background}" SnapsToDevicePixels="True" BorderThickness="1" BorderBrush="#E0E6ED">
                       <Border.Effect>
                           <DropShadowEffect Color="Pink" BlurRadius="10" ShadowDepth="0" />
                       </Border.Effect>
                       <ScrollViewer x:Name="PART_ContentHost" Focusable="false" HorizontalScrollBarVisibility="Hidden" VerticalScrollBarVisibility="Hidden"/>
                   </Border>
                   <ControlTemplate.Triggers>
                       <Trigger Property="IsMouseOver" Value="true">
                           <Setter Property="BorderBrush" TargetName="border" Value="#d9d9d9"/>
                       </Trigger>
                       <Trigger Property="IsKeyboardFocused" Value="true">
                           <Setter Property="BorderBrush" TargetName="border" Value="#d9d9d9"/>
                       </Trigger>
                   </ControlTemplate.Triggers>
               </ControlTemplate>
           </Setter.Value>
       </Setter>
   </Style>
   <Style x:Key="filterTextBox" TargetType="TextBox" BasedOn="{StaticResource ConfirmationSearchTextBox}">
       <Setter Property="Padding" Value="10 7" />
       <Setter Property="Template">
           <Setter.Value>
               <ControlTemplate TargetType="{x:Type TextBoxBase}">
                   <Border x:Name="border" CornerRadius="7" Background="{TemplateBinding Background}" BorderThickness="1" BorderBrush="#E0E6ED" SnapsToDevicePixels="True">
                       <Border.Effect>
                           <DropShadowEffect Color="HotPink" BlurRadius="10" ShadowDepth="0" />
                       </Border.Effect>
                       <ScrollViewer x:Name="PART_ContentHost" Focusable="false" HorizontalScrollBarVisibility="Hidden" VerticalScrollBarVisibility="Hidden"/>
                   </Border>
                   <ControlTemplate.Triggers>
                       <Trigger Property="IsMouseOver" Value="true">
                           <Setter Property="BorderBrush" TargetName="border" Value="#d9d9d9"/>
                       </Trigger>
                       <Trigger Property="IsKeyboardFocused" Value="true">
                           <Setter Property="BorderBrush" TargetName="border" Value="#d9d9d9"/>
                       </Trigger>
                   </ControlTemplate.Triggers>
               </ControlTemplate>
           </Setter.Value>
       </Setter>
   </Style>
   <!-- DataGrid Style -->
   <Style x:Key="{ComponentResourceKey ResourceId=DataGridSelectAllButtonStyle, TypeInTargetAssembly={x:Type DataGrid}}" TargetType="{x:Type Button}">
       <Setter Property="Template">
           <Setter.Value>
               <ControlTemplate TargetType="{x:Type Button}">
                   <Grid>
                       <Rectangle x:Name="Border" Fill="{DynamicResource {x:Static SystemColors.ControlBrushKey}}" SnapsToDevicePixels="True"/>
                       <Polygon x:Name="Arrow" Fill="Black" HorizontalAlignment="Right" Margin="8,8,3,3" Opacity="0.15" Points="0,10 10,10 10,0" Stretch="Uniform" VerticalAlignment="Bottom"/>
                   </Grid>
                   <ControlTemplate.Triggers>
                       <Trigger Property="IsMouseOver" Value="True">
                           <Setter Property="Stroke" TargetName="Border" Value="{DynamicResource {x:Static SystemColors.ControlDarkBrushKey}}"/>
                       </Trigger>
                       <Trigger Property="IsPressed" Value="True">
                           <Setter Property="Fill" TargetName="Border" Value="{DynamicResource {x:Static SystemColors.ControlDarkBrushKey}}"/>
                       </Trigger>
                       <Trigger Property="IsEnabled" Value="False">
                           <Setter Property="Visibility" TargetName="Arrow" Value="Collapsed"/>
                       </Trigger>
                   </ControlTemplate.Triggers>
               </ControlTemplate>
           </Setter.Value>
       </Setter>
   </Style>
   <Style x:Key="ConfirmationDataGridStyle" TargetType="{x:Type DataGrid}">
       <Setter Property="Background" Value="Transparent"/>
       <Setter Property="Foreground" Value="#222528"/>
       <Setter Property="BorderThickness" Value="0"/>
       <Setter Property="RowDetailsVisibilityMode" Value="VisibleWhenSelected"/>
       <Setter Property="ScrollViewer.CanContentScroll" Value="true"/>
       <Setter Property="ScrollViewer.PanningMode" Value="Both"/>
       <Setter Property="Stylus.IsFlicksEnabled" Value="True"/>
       <Setter Property="AutoGenerateColumns" Value="False" />
       <Setter Property="HeadersVisibility" Value="Column" />
       <Setter Property="Margin" Value="0 10 0 0" />
       <Setter Property="Grid.Row" Value="5" />
       <Setter Property="SelectionMode" Value="Single" />
       <Setter Property="SelectionUnit" Value="FullRow" />
       <Setter Property="CanUserAddRows" Value="False" />
       <Setter Property="CanUserDeleteRows" Value="False" />
       <Setter Property="CanUserReorderColumns" Value="True" />
       <Setter Property="CanUserResizeRows" Value="True" />
       <!-- Grid Text font size -->
       <Setter Property="FontSize" Value="14" />
       <Setter Property="Foreground" Value="Black"/>
       <Setter Property="GridLinesVisibility" Value="None" />
       <Setter Property="ColumnWidth" Value="*" />
       <Setter Property="Template">
           <Setter.Value>
               <ControlTemplate TargetType="{x:Type DataGrid}">
                   <Border Background="{TemplateBinding Background}" BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{TemplateBinding BorderBrush}" Padding="{TemplateBinding Padding}" SnapsToDevicePixels="True">
                       <ScrollViewer x:Name="DG_ScrollViewer" Focusable="false">
                           <ScrollViewer.Template>
                               <ControlTemplate TargetType="{x:Type ScrollViewer}">
                                   <Grid>
                                       <Grid.ColumnDefinitions>
                                           <ColumnDefinition Width="Auto"/>
                                           <ColumnDefinition Width="*"/>
                                           <ColumnDefinition Width="Auto"/>
                                       </Grid.ColumnDefinitions>
                                       <Grid.RowDefinitions>
                                           <RowDefinition Height="Auto"/>
                                           <RowDefinition Height="*"/>
                                           <RowDefinition Height="Auto"/>
                                       </Grid.RowDefinitions>
                                       <Button Command="{x:Static DataGrid.SelectAllCommand}" Focusable="false" Style="{DynamicResource {ComponentResourceKey ResourceId=DataGridSelectAllButtonStyle, TypeInTargetAssembly={x:Type DataGrid}}}" Visibility="{Binding HeadersVisibility, Converter={x:Static DataGrid.HeadersVisibilityConverter}, ConverterParameter={x:Static DataGridHeadersVisibility.All}, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}" Width="{Binding CellsPanelHorizontalOffset, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}"/>
                                       <DataGridColumnHeadersPresenter x:Name="PART_ColumnHeadersPresenter" Grid.Column="1" Visibility="{Binding HeadersVisibility, Converter={x:Static DataGrid.HeadersVisibilityConverter}, ConverterParameter={x:Static DataGridHeadersVisibility.Column}, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}"/>
                                       <ScrollContentPresenter x:Name="PART_ScrollContentPresenter" Grid.ColumnSpan="2" CanContentScroll="{TemplateBinding CanContentScroll}" Grid.Row="1"/>
                                       <ScrollBar x:Name="PART_VerticalScrollBar" Grid.Column="2" Maximum="{TemplateBinding ScrollableHeight}" Orientation="Vertical" Grid.Row="1" ViewportSize="{TemplateBinding ViewportHeight}" Value="{Binding VerticalOffset, Mode=OneWay, RelativeSource={RelativeSource TemplatedParent}}" Visibility="{TemplateBinding ComputedVerticalScrollBarVisibility}"/>
                                       <Grid Grid.Column="1" Grid.Row="2">
                                           <Grid.ColumnDefinitions>
                                               <ColumnDefinition Width="{Binding NonFrozenColumnsViewportHorizontalOffset, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}"/>
                                               <ColumnDefinition Width="*"/>
                                           </Grid.ColumnDefinitions>
                                           <ScrollBar x:Name="PART_HorizontalScrollBar" Grid.Column="1" Maximum="{TemplateBinding ScrollableWidth}" Orientation="Horizontal" ViewportSize="{TemplateBinding ViewportWidth}" Value="{Binding HorizontalOffset, Mode=OneWay, RelativeSource={RelativeSource TemplatedParent}}" Visibility="{TemplateBinding ComputedHorizontalScrollBarVisibility}"/>
                                       </Grid>
                                   </Grid>
                               </ControlTemplate>
                           </ScrollViewer.Template>
                           <ItemsPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
                       </ScrollViewer>
                   </Border>
               </ControlTemplate>
           </Setter.Value>
       </Setter>
       <Style.Triggers>
           <MultiTrigger>
               <MultiTrigger.Conditions>
                   <Condition Property="IsGrouping" Value="true"/>
                   <Condition Property="VirtualizingPanel.IsVirtualizingWhenGrouping" Value="false"/>
               </MultiTrigger.Conditions>
               <Setter Property="ScrollViewer.CanContentScroll" Value="false"/>
           </MultiTrigger>
       </Style.Triggers>
   </Style>
   <Style x:Key="ConfirmationDataGridStyleOfRow" TargetType="{x:Type DataGridRow}">
       <Setter Property="Margin" Value="0 4 0 0" />
       <!-- Background of the DataGrid for confirmation page -->
       <Setter Property="Background" Value="Transparent"/>
       <Setter Property="SnapsToDevicePixels" Value="true"/>
       <Setter Property="Validation.ErrorTemplate" Value="{x:Null}"/>
       <Setter Property="ValidationErrorTemplate">
           <Setter.Value>
               <ControlTemplate>
                   <TextBlock Foreground="Red" Margin="2,0,0,0" Text="!!" VerticalAlignment="Center"/>
               </ControlTemplate>
           </Setter.Value>
       </Setter>
       <Setter Property="Foreground" Value="Black"/>
       <Setter Property="Template">
           <Setter.Value>
               <ControlTemplate TargetType="{x:Type DataGridRow}">
                   <Border x:Name="DGR_Border" Padding="0 8" CornerRadius="5" Background="{TemplateBinding Background}" BorderThickness="0" SnapsToDevicePixels="True">
                       <SelectiveScrollingGrid>
                           <SelectiveScrollingGrid.ColumnDefinitions>
                               <ColumnDefinition Width="Auto"/>
                               <ColumnDefinition Width="*"/>
                           </SelectiveScrollingGrid.ColumnDefinitions>
                           <SelectiveScrollingGrid.RowDefinitions>
                               <RowDefinition Height="*"/>
                               <RowDefinition Height="Auto"/>
                           </SelectiveScrollingGrid.RowDefinitions>
                           <DataGridCellsPresenter Grid.Column="1" ItemsPanel="{TemplateBinding ItemsPanel}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
                           <DataGridDetailsPresenter Grid.Column="1" Grid.Row="1" SelectiveScrollingGrid.SelectiveScrollingOrientation="{Binding AreRowDetailsFrozen, Converter={x:Static DataGrid.RowDetailsScrollingConverter}, ConverterParameter={x:Static SelectiveScrollingOrientation.Vertical}, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}" Visibility="{TemplateBinding DetailsVisibility}"/>
                           <DataGridRowHeader Grid.RowSpan="2" SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical" Visibility="{Binding HeadersVisibility, Converter={x:Static DataGrid.HeadersVisibilityConverter}, ConverterParameter={x:Static DataGridHeadersVisibility.Row}, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}"/>
                       </SelectiveScrollingGrid>
                   </Border>
                   <!--
                    <ControlTemplate.Triggers><Trigger Property="IsSelected" Value="True"><Setter Property="Background" TargetName="DGR_Border" Value="LightGray" /><Setter Property="Foreground" Value="Black" /></Trigger></ControlTemplate.Triggers>
                    -->
               </ControlTemplate>
           </Setter.Value>
       </Setter>
       <!--
        <Style.Triggers><Trigger Property="IsMouseOver" Value="True"><Setter Property="Background" Value="#623ED0"/><Setter Property="Foreground" Value="#ffffff"/></Trigger><Trigger Property="IsSelected" Value="True"><Setter Property="Background" Value="#623ED0"/><Setter Property="Foreground" Value="#ffffff"/></Trigger><MultiTrigger><MultiTrigger.Conditions><Condition Property="IsSelected" Value="true"/><Condition Property="Selector.IsSelectionActive" Value="false"/></MultiTrigger.Conditions><Setter Property="Background" Value="#dfdfdf"/></MultiTrigger></Style.Triggers>
        -->
   </Style>
   <!-- Background of the DataGrid for confirmation page -->
   <Style x:Key="DataGridCellStyle1" TargetType="{x:Type DataGridCell}">
       <Setter Property="Background" Value="Transparent"/>
       <Setter Property="VerticalAlignment" Value="Center" />
       <Setter Property="FocusVisualStyle" Value="{x:Null}" />
       <Setter Property="Margin" Value="15 0" />
       <Setter Property="Foreground" Value="Black"/>
       <Setter Property="Template">
           <Setter.Value>
               <ControlTemplate TargetType="{x:Type DataGridCell}">
                   <Border Background="{TemplateBinding Background}" BorderThickness="0" SnapsToDevicePixels="True">
                       <ContentPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
                   </Border>
               </ControlTemplate>
           </Setter.Value>
       </Setter>
       <!-- Another trigger for row selection, the first trigger set is disabled above -->
       <!--
        <Style.Triggers><Trigger Property="IsSelected" Value="True"><Setter Property="Background" Value="LightGray"/><Setter Property="Foreground" Value="Black"/></Trigger></Style.Triggers>
        -->
   </Style>
   <Style x:Key="ColumnHeaderGripperStyle" TargetType="{x:Type Thumb}">
       <Setter Property="Width" Value="8"/>
       <Setter Property="Background" Value="Transparent"/>
       <Setter Property="Cursor" Value="SizeWE"/>
       <Setter Property="Template">
           <Setter.Value>
               <ControlTemplate TargetType="{x:Type Thumb}">
                   <Border Background="{TemplateBinding Background}" Padding="{TemplateBinding Padding}"/>
               </ControlTemplate>
           </Setter.Value>
       </Setter>
   </Style>
   <!-- Column Header -->
   <Style x:Key="DataGridColumnHeaderStyle1" TargetType="{x:Type DataGridColumnHeader}">
       <Setter Property="VerticalContentAlignment" Value="Center"/>
       <Setter Property="Background" Value="Transparent" />
       <!-- Header text font size -->
       <Setter Property="FontSize" Value="14"/>
       <Setter Property="FontWeight" Value="Bold"/>
       <Setter Property="Foreground" Value="#333333" />
       <Setter Property="Margin" Value="8,0,8,10" />
       <Setter Property="BorderThickness" Value="0,0,1,0" />
       <!-- Only vertical borders -->
       <Setter Property="BorderBrush" Value="#333333" />
       <!-- Setting the border color here -->
       <Setter Property="Template">
           <Setter.Value>
               <ControlTemplate TargetType="{x:Type DataGridColumnHeader}">
                   <Grid>
                       <theme:DataGridHeaderBorder Background="{TemplateBinding Background}" BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{TemplateBinding BorderBrush}" IsClickable="{TemplateBinding CanUserSort}" IsPressed="{TemplateBinding IsPressed}" IsHovered="{TemplateBinding IsMouseOver}" Padding="{TemplateBinding Padding}" SeparatorBrush="{TemplateBinding SeparatorBrush}" SortDirection="{TemplateBinding SortDirection}" SeparatorVisibility="{TemplateBinding SeparatorVisibility}">
                           <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
                       </theme:DataGridHeaderBorder>
                       <Thumb x:Name="PART_LeftHeaderGripper" HorizontalAlignment="Left" Style="{StaticResource ColumnHeaderGripperStyle}"/>
                       <Thumb x:Name="PART_RightHeaderGripper" HorizontalAlignment="Right" Style="{StaticResource ColumnHeaderGripperStyle}"/>
                   </Grid>
               </ControlTemplate>
           </Setter.Value>
       </Setter>
   </Style>
</ResourceDictionary>