码迷,mamicode.com
首页 > 其他好文 > 详细

DataGrid 字体垂直居中

时间:2020-02-28 19:07:26      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:vertica   需要   lte   style   present   back   标题   body   idc   

如果用DataGridTextColumn作为DataGrid的列,字体垂直居中需要这样设置:

<Style x:Key="Body_Content_DataGrid_Centering"
     TargetType="{x:Type DataGridCell}">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type DataGridCell}">
                <Grid Background="{TemplateBinding Background}">
                    <ContentPresenter VerticalAlignment="Center" />
                </Grid>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

标题水平居中这样设置:

<Style TargetType="DataGridColumnHeader">
       <Setter Property="HorizontalContentAlignment" Value="Center"/>
</Style>

 

DataGrid 字体垂直居中

标签:vertica   需要   lte   style   present   back   标题   body   idc   

原文地址:https://www.cnblogs.com/iDream2018/p/12378334.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!