设置DataGridView单元格的文本对齐方式
Posted feiyucha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置DataGridView单元格的文本对齐方式相关的知识,希望对你有一定的参考价值。
实现效果:
知识运用:
DataGridViewCellStyle类的Alignment属性 //获取或设置DataGridView单元格内的单元格内容的位置
public DataGridViewContentAlignment Alignment {get; set;} // 设置控件列的DefaultCellStyle.Alignment属性来完成
实现代码:
dataGridView1.Columns[0].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
以上是关于设置DataGridView单元格的文本对齐方式的主要内容,如果未能解决你的问题,请参考以下文章