在WPF的DataGrid文本对齐文本、WPF、DataGrid

2023-09-03 05:38:55 作者:舍弃执念ヽ

我该如何调整列的数据中心在WPF 的DataGrid

How can I align the column data to center in a WPF DataGrid?

推荐答案

这很难不知道具体的说,但这里有一个 DataGridTextColumn 为中心:

It's hard to say without knowing specifics, but here's a DataGridTextColumn that is centered:

<wpf:DataGridTextColumn Header="Name" Binding="{Binding Name}" IsReadOnly="True">
    <wpf:DataGridTextColumn.CellStyle>
        <Style>
            <Setter Property="FrameworkElement.HorizontalAlignment" Value="Center"/>
        </Style>
    </wpf:DataGridTextColumn.CellStyle>
</wpf:DataGridTextColumn>