Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/Wpf.Ui/Styles/Controls/DataGrid.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -556,13 +556,14 @@
</Setter>
</Style>

<Style x:Key="DefaultDragIndicatorStyleStyle" TargetType="{x:Type ContentControl}">
<Style x:Key="DefaultDragIndicatorStyleStyle" TargetType="{x:Type Control}">
<Setter Property="Foreground" Value="{DynamicResource TextFillColorPrimaryBrush}" />
<Setter Property="Background" Value="Transparent" />
<Setter Property="OverridesDefaultStyle" Value="True" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ContentControl">
<!-- DataGridColumnFloatingHeader is internal-->
<ControlTemplate TargetType="Control">
<Grid Background="{TemplateBinding Background}">
<Grid
Margin="{TemplateBinding Padding}"
Expand All @@ -573,7 +574,7 @@
<ColumnDefinition Width="Auto" MinWidth="32" />
</Grid.ColumnDefinitions>

<ContentPresenter Content="{TemplateBinding Content}" />
<!-- <ContentPresenter Content="{TemplateBinding Content}" /> -->

<iconElements:SymbolIcon
x:Name="SortIcon"
Expand Down