Hi
i want to make XamGrid header as BOLD and apply the different colors to xamgrid.
Thanks in advance.
Thanks
Nagakumar Pothula
Hi,
You could use the HeaderTemplate property of the column for that purpose:
<ig:TextColumn Key="Name"> <ig:TextColumn.HeaderTemplate> <DataTemplate> <TextBlock Text="Name" FontWeight="Bold" Foreground="Red"/> </DataTemplate> </ig:TextColumn.HeaderTemplate> </ig:TextColumn>
Hope this helps,