在datagridview中垂直显示所有单元格文本
Posted
技术标签:
【中文标题】在datagridview中垂直显示所有单元格文本【英文标题】:show all cells text vertically in datagridview 【发布时间】:2012-11-05 08:45:38 【问题描述】:根据this
,我们可以在垂直方向显示一个DataGridView Column 文本。现在我的问题是我们如何才能垂直显示所有 DataGridView Cell 文本方向?
任何帮助将不胜感激
【问题讨论】:
你看过DataGridViewContentAlignment吗? 我不想改变对齐方式我想垂直显示文本 【参考方案1】:您可以使用 WPF。 但是如果你想使用WinForm,你可以DevExpress。 WPF
的 Aslo DevExpress usd【讨论】:
【参考方案2】:这里使用了 CellPainting 事件。
private void Form1_Load(object sender, EventArgs e)
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.EnableResizing;
dataGridView1.ColumnHeadersHeight = 50;
dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader;
// Here we attach an event handler to the cell painting event
dataGridView1.CellPainting += new DataGridViewCellPaintingEventHandler(dataGridView1_CellPainting);
void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
// check that we are in a header cell!
if (e.RowIndex == -1 && e.ColumnIndex >= 0)
e.PaintBackground(e.ClipBounds, true);
Rectangle rect = this.dataGridView1.GetColumnDisplayRectangle(e.ColumnIndex, true);
Size titleSize = TextRenderer.MeasureText(e.Value.ToString(), e.CellStyle.Font);
if (this.dataGridView1.ColumnHeadersHeight < titleSize.Width)
this.dataGridView1.ColumnHeadersHeight = titleSize.Width;
e.Graphics.TranslateTransform(0, titleSize.Width);
e.Graphics.RotateTransform(-90.0F);
// This is the key line for bottom alignment - we adjust the PointF based on the
// ColumnHeadersHeight minus the current text width. ColumnHeadersHeight is the
// maximum of all the columns since we paint cells twice - though this fact
// may not be true in all usages!
e.Graphics.DrawString(e.Value.ToString(), this.Font, Brushes.Black, new PointF(rect.Y - (dataGridView1.ColumnHeadersHeight - titleSize.Width) , rect.X));
// The old line for comparison
//e.Graphics.DrawString(e.Value.ToString(), this.Font, Brushes.Black, new PointF(rect.Y, rect.X));
e.Graphics.RotateTransform(90.0F);
e.Graphics.TranslateTransform(0, -titleSize.Width);
e.Handled = true;
【讨论】:
以上是关于在datagridview中垂直显示所有单元格文本的主要内容,如果未能解决你的问题,请参考以下文章
C# 中datagridview中的如何给单元格设置滚动条,是单元格不是整个datagridview