CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Hybrid View

  1. #1
    Join Date
    Apr 2009
    Posts
    9

    DataGrid Header fontweight to Bold

    Hi ,

    I am using datagrid in my project .i need to set Grid header font to be bold .

    Please let me know.

  2. #2
    Join Date
    Sep 2002
    Location
    14° 39'19.65"N / 121° 1'44.34"E
    Posts
    9,815

    Re: DataGrid Header fontweight to Bold

    Probably the easiest way to accomplish this is by setting the DataGrid's ColumnHeaderStyle to a Style that sets the FontWeight accordingly. The following code shows how you could set the Style in-line, using property element syntax:
    Code:
    <dg:DataGrid>
        <dg:DataGrid.ColumnHeaderStyle>
            <Style TargetType="Control">
                <Setter Property="FontWeight" Value="Bold"/>
            </Style>
        </dg:DataGrid.ColumnHeaderStyle>
    </dg:DataGrid>
    In your actual code, you'd probably rather define a separate style as a resource and assign it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured