c#winform datagridview如何实现二维表头??需要完整代码。。。。
发布网友
发布时间:2022-04-21 02:38
我来回答
共3个回答
热心网友
时间:2023-11-04 14:31
private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
{
Rectangle rectangle = new Rectangle(e.RowBounds.Location.X,
e.RowBounds.Location.Y,
dataGridView1.RowHeadersWidth - 4,
e.RowBounds.Height);
TextRenderer.DrawText(e.Graphics, (e.RowIndex + 1).ToString(),
dataGridView1.RowHeadersDefaultCellStyle.Font,
rectangle,
dataGridView1.RowHeadersDefaultCellStyle.ForeColor,
TextFormatFlags.VerticalCenter | TextFormatFlags.Right);
}
这个是用来显示行号的。把文字内容修改成你的行表头就行
热心网友
时间:2023-11-04 14:32
sourcegrid
试下这个~
热心网友
时间:2023-11-04 14:32
我之前用过一个控件但是具体名字忘记了 从网上找的