the Watermark Area and not the Item after they are dropped inside.
<Window.Resources>
<Style x:Key="GroupDropAreaItemStyle" TargetType="{x:Type Syncfusion:GroupDropAreaItem}">
<Setter Property="Foreground" Value="Red" />
<Setter Property="Background" Value="LightBlue" />
</Style>
<Style BasedOn="{StaticResource GroupDropAreaItemStyle}" TargetType="{x:Type Syncfusion:GroupDropAreaItem}" />
</Window.Resources> |
I'm no able to styling the Group Drop Area Items.
I've tried to use the GroupDropAreaStyleProperty to change foregraund and background but it is able to change onlythe Watermark Area and not the Item after they are dropped inside.
Hi Gianni,You can customize the GropDropArea by writing the style for GroupDropArea . We already have a kb for this,Kb Link:UG Link:And you can apply the style for GroupDropAreaItem by write the style for GroupDropAreaItem like below,
<Window.Resources><Style x:Key="GroupDropAreaItemStyle" TargetType="{x:Type Syncfusion:GroupDropAreaItem}"><Setter Property="Foreground" Value="Red" /><Setter Property="Background" Value="LightBlue" /></Style><Style BasedOn="{StaticResource GroupDropAreaItemStyle}" TargetType="{x:Type Syncfusion:GroupDropAreaItem}" /></Window.Resources>Please refer the following UG to show how to edit the default style for SfDataGridRegards,Jai Ganesh S