We required to applying XAMLDATAGRID style on background color like Theme Which is already avaliable in infragistics.
We have excplicity changed color for our application , we required same to apply in DataGrid like applying differenct color for HighlightAlternateRecords .
For better understanding , is possible to send us any sample file for applying styles on XAMLDATAGRID .
Looking forward for your reply on the same.
Thanks...
You are very welcome and thank you for your feedback. I believe that this will help to other community members as well.
Thank you , it work fine.
Hello and thank you for posting!
Changing the whole background of the XamDataGrid control could be achieved by simply setting its Background property to some value. If you would like to modify the labels, you can add a LabelPresenter style:
<Style TargetType="{x:Type igWPF:LabelPresenter}">
<Setter Property="Background" Value="Yellow"/>
</Style>
In order to change the alternate background the following style can help:
<Style TargetType="{x:Type igDP:DataRecordCellArea}">
<Setter Property="BackgroundAlternate" Value="Blue"/>
Please let me know if you need additional assistance on the matter.