如何右对齐 DataGridView 列中的文本?
如何右对齐 DataGridView 列中的文本?我正在编写一个 .NET WinForms 应用程序。
How can I right-align text in a DataGridView column? I am writing a .NET WinForms application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
要在 dataGridCell 中设置对齐文本,有两种方法:
为特定单元格设置对齐方式或为行的每个单元格设置对齐方式。
对于一列,请转到
Columns->DataGridViewCellStyle
或
对于每一列,请转到
RowDefaultCellStyle
控制面板如下所示:
To set align text in dataGridCell you have two ways:
Set the align for a specific cell or set for each cell of row.
For one column go to
Columns->DataGridViewCellStyle
or
For each column go to
RowDefaultCellStyle
The control panel is the same as the follow:
我知道这已经很旧了,但是对于那些浏览这个问题的人来说,MUG4N 的答案将对齐使用相同默认单元格样式的所有列。我没有使用自动生成列,所以这是不可接受的。相反,我使用:
在这种情况下
e
来自:I know this is old, but for those surfing this question, the answer by MUG4N will align all columns that use the same defaultcellstyle. I'm not using autogeneratecolumns so that is not acceptable. Instead I used:
In this case
e
is from:您可以通过 Foreach 循环使用这个简单的代码一次编辑所有列
you can edit all the columns at once by using this simple code via Foreach loop
当我们处理对齐和配置时,通过使用 (C#) 匿名类型来减少重复任务可能很有用。更易于阅读,并且可以在一处编辑高级操作。就像这个 datagridview dg 配置一样
While we are dealing with alignment and configuration it can be useful to reduce repetitive tasks by using (C#) anonymous types. Much easier to read and advanced operations can be edited in one place. Like in this datagridview dg configuration
DataGridViewColumn 列0 = dataGridViewGroup.Columns[0];
DataGridViewColumn 列1 = dataGridViewGroup.Columns[1];
column1.DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleRight;
列 1. 宽度 = 120;
DataGridViewColumn column0 = dataGridViewGroup.Columns[0];
DataGridViewColumn column1 = dataGridViewGroup.Columns[1];
column1.DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleRight;
column1.Width = 120;