wpf 中设置DataGridTextColumn的文本对齐方式

DataGrid里面存在着像DataGridColumnHeader、DataGrid、DataGridCell等相关控件的样式设置,例如让一个DataGrid里面某一列的控件内容居中显示,
例如:

  1. DataGridColumnHeader
    View Code

     

普通控件设定样式使用CellStyle,或者属性即可,当设定DataGridTextColumn的文本显示时候,需要设定其ElementStyle,例如:

View Code
Style部分:

        
            
        

调用部分:

                
                    "300"  Binding="{Binding Path=Wid1}"  ElementStyle="{StaticResource dgCell}">
                    
                

 

转载于:https://www.cnblogs.com/peasana/archive/2012/07/11/2586031.html

你可能感兴趣的:(wpf 中设置DataGridTextColumn的文本对齐方式)