I have attached the image file. I'm trying to apply border color for GroupBy Area Location.
Please give Style property to apply same color for border in GroupByLocation Area.
<Style TargetType="{x:Type igDP:GroupByAreaMulti}">
<Setter Property="BorderBrush" Value="#FFE3EFFF"/>
</Style>
Hi,
I hope you had a chance to review my xaml for the earlier product version. It really is primarily changes to the namespace references.
Please let me know if you need further assistance.
Sorry, didn't know what version you were using. You can check in the xamDataPresenter's generic style file for the ExpanderBar
But you would want to use the following in your namespace declarations.
xmlns:igDP="http://infragistics.com/DataPresenter"
xmlns:igWindows="http://infragistics.com/Windows"
xmlns:igThemes="http://infragistics.com/Themes"
And modify the TargetType and BasedOn references accordingly.
<igDP:XamDataGrid BindToSampleData="True"
HorizontalAlignment="Left" VerticalAlignment="Top">
<igDP:XamDataGrid.Resources>
<Style TargetType="{x:Type igWindows:ExpanderBar}" BasedOn="{x:Static igThemes:PrimitivesGeneric.ExpanderBar}">
<Setter Property="BorderBrush" Value="Lime"/>
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="MinHeight" Value="10"/>
<Setter Property="Cursor" Value="Hand"/>
<Setter Property="Focusable" Value="False"/>
</igDP:XamDataGrid.Resources>
</igDP:XamDataGrid>
Hope this helps. Let me know if you have further questions.
We are using WPF4 v10.3.
it's not supporting
xmlns :igDP=http://schemas.infragistics.com/xaml/wpf for xamdatagrid
<Style TargetType="{x:Type igDP:ExpanderBar}" BasedOn="{x:Static igDP:PrimitivesGeneric.ExpanderBar}">
Is possible to send for the version v10.3