Silverlight DataGrid Header Horizontal Alignment

前端 未结 3 1055
别跟我提以往
别跟我提以往 2021-01-05 17:57

I want to change the alignment of a header on a datagrid in Silverlight, and I can\'t seem to figure out how to do it. Here\'s what I have so far:

  

        
相关标签:
3条回答
  • 2021-01-05 18:09

    Maybe add padding to make it look better...

        <Style x:Key="HeaderCenter"
               TargetType="dataPrimitives:DataGridColumnHeader">
            <Setter Property="HorizontalContentAlignment"
                    Value="Center" />
            <Setter Property="HorizontalAlignment"
                    Value="Stretch" />
            <Setter Property="Padding"
                    Value="12,2,2,2" />
        </Style>
    
    0 讨论(0)
  • 2021-01-05 18:12

    It seems that this approach sorta works but you get the default header, right aligned. I have a static resource style for the datagridcolumnheader and I only want to change the alignment leaving all the other style elements as contained in the custom style. So far I have:

    xmlns:sdk="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data"
    xmlns:prim="clr-namespace:System.Windows.Controls.Primitives;assembly=System.Windows.Controls.Data"

    and

    <sdk:DataGrid  x:Name="ServicesDataGrid" Width="Auto" Margin="15,5,5,5" ColumnHeaderStyle="{StaticResource DataGridColHeaderStyle}" ......
    

    and

    <sdk:DataGridTextColumn Header="Gross Amt" Binding="{Binding GrossAmount,StringFormat=n2}" ElementStyle="{StaticResource RightAlignStyle}"> <sdk:DataGridTextColumn.HeaderStyle> <Style TargetType="prim:DataGridColumnHeader"> <Setter Property="HorizontalContentAlignment" Value="Right"/> </Style> </sdk:DataGridTextColumn.HeaderStyle> </sdk:DataGridTextColumn>

    Resizing the grid shows the text is right aligned but the font, background, etc are not as defined in DataGridColHeaderStyle

    Thanks

    0 讨论(0)
  • 2021-01-05 18:20

    You were really close, its:-

    <Setter Property="HorizontalContentAlignment" Value="Center"/>
    
    0 讨论(0)
提交回复
热议问题