Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
XamGrid Header
posted

Hi

i want to make XamGrid header as BOLD and apply the different colors to xamgrid.

 

Thanks in advance.

 

Thanks

Nagakumar Pothula

Parents
No Data
Reply
  • 6475
    posted

    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,

Children
No Data