Hi Pati,
You can use a data template to modify the way column headers are displayed.
<!-- Data Template for Xceed Column-->
<DataTemplate x:Key="colTemplate">
<Label Content="{xcdg:CellEditorBinding}" TextBlock.FontWeight="Bold" />
</DataTemplate>
And you have to apply this to each and every column, either in xaml like:
<xcdg:Column FieldName="AnyThing" TitleTemplate="{StaticResource colTemplate}" />
or in code behind like:
foreach(Column col in myXceedGrid.Columns)
{
col.TitleTemplate = (DataTemplate)this.FindResource("colTemplate");
}
I am having problem in automating this application of template to columns. Please follow : http://xceed.com/CS/forums/thread/13043.aspx
Regards,
Abdullah Ansari
Senior Software Engineer
Outworks Solutions Private Limited
Everything is okay in the end. If its not okay, then its not the end.