C# Winform DataGridView中实现二维表头

别发那些用Pen之类画出来的,我下过,试过很多。有的确实不错,但前提是列数不多,整个表格宽度不超过界面,像我这种有很多列,超出窗体宽度的时候,滚动条一拉,上面画出来的列头... 别发那些用Pen之类画出来的,我下过,试过很多。有的确实不错,但前提是列数不多,整个表格宽度不超过界面,像我这种有很多列,超出窗体宽度的时候,滚动条一拉,上面画出来的列头就花了。

请高手赐招!
分不多,请见谅!
上面这个截图,是我在Winform中用HTML画出来的,现在求个用DataGridView实现如图所示格式的表~
展开
 我来答
沵夢
2011-03-22
知道答主
回答量:19
采纳率:0%
帮助的人:14.1万
展开全部
1,继承DataGridView,添加表头信息类。
2,添加CellPainting,代码如下:
private void DataGridViewEx_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
if (e.RowIndex == -1)
{
// int w = dataGridView1.HorizontalScrollingOffset + dataGridView1.TopLeftHeaderCell.Size.Width + dataGridView1.Columns[0].Width + 10;

Rectangle newRect = new Rectangle(e.CellBounds.X + 1,
e.CellBounds.Y + 1, e.CellBounds.Width - 4,
e.CellBounds.Height - 4);

using (
Brush gridBrush = new SolidBrush(this.GridColor),
backColorBrush = new SolidBrush(e.CellStyle.BackColor))
{
using (Pen gridLinePen = new Pen(gridBrush))
{
// Erase the cell.
e.Graphics.FillRectangle(backColorBrush, e.CellBounds);

// Draw the grid lines (only the right and bottom lines;
// DataGridView takes care of the others).
e.Graphics.DrawLine(gridLinePen, e.CellBounds.Left,
e.CellBounds.Bottom - 1, e.CellBounds.Right - 1,
e.CellBounds.Bottom - 1);
if (e.ColumnIndex > -1 && topRow!=null&&topRow.Cells[e.ColumnIndex].ColSpan>1)
{
e.Graphics.DrawLine(gridLinePen, e.CellBounds.Right - 1,
e.CellBounds.Top + e.ClipBounds.Height / 2, e.CellBounds.Right - 1,
e.CellBounds.Bottom);
}
else
{
e.Graphics.DrawLine(gridLinePen, e.CellBounds.Right - 1,
e.CellBounds.Top, e.CellBounds.Right - 1,
e.CellBounds.Bottom);
}

// Draw the inset highlight box.
// e.Graphics.DrawRectangle(Pens.Blue, newRect);

int scale = e.CellBounds.Height/3;
if (e.ColumnIndex > -1 && topRow.Cells[e.ColumnIndex].Text != null)
{
scale= e.CellBounds.Height / 2;
e.Graphics.DrawLine(gridLinePen, e.CellBounds.Left, e.CellBounds.Bottom - e.CellBounds.Height / 2, e.CellBounds.Right, e.CellBounds.Bottom - e.CellBounds.Height / 2);
}
// Draw the text content of the cell, ignoring alignment.

if (e.Value != null)
{
e.Graphics.DrawString(e.Value.ToString(), e.CellStyle.Font,
Brushes.Crimson, e.CellBounds.X + 2,
e.CellBounds.Y + scale+ 2, StringFormat.GenericDefault);

}

if (e.ColumnIndex > -1 && topRow.Cells[e.ColumnIndex].RelateIndex > -1 && topRow.Cells[e.ColumnIndex].Text!=null)

{
Rectangle recCell = new Rectangle(e.CellBounds.X - 1 - topRow.Cells[e.ColumnIndex].SpanRowWith,
e.CellBounds.Y + 1, topRow.Cells[e.ColumnIndex].SpanRowWith,
e.CellBounds.Height / 2);

StringFormat sf = new StringFormat();

sf.Alignment = StringAlignment.Center;

e.Graphics.DrawString(topRow.Cells[e.ColumnIndex].Text, e.CellStyle.Font, Brushes.Crimson, recCell, sf);

}

e.Handled = true;
}
}
}

}
3,调用方法
dataGridViewEx1.TopRow.Cells[2].Text = "入库";
dataGridViewEx1.TopRow.Cells[2].ColSpan = 2;

dataGridViewEx1.TopRow.Cells[4].Text = "出库";
dataGridViewEx1.TopRow.Cells[4].ColSpan = 2;4,效果图

至于表尾合计,也做出了原型。二维表头+表尾合计,基本上满足需求了。
追问
这个方案我找到过,也用过。
就像我上面的问题补充那样~ 当列过多的时,横向滚动条一拉就列头就花了。
chunlizh
2011-03-22 · 超过27用户采纳过TA的回答
知道答主
回答量:157
采纳率:0%
帮助的人:78.4万
展开全部
那就出钱买第三方控件吧!别只想伸手拿来!!自己画,滚动条一拉,列头就花了,那只能说明水平太烂,没控制好
更多追问追答
追问
看了你给别人的历史回答,挺无语的~
追答
不是我的回答无语,是提问者的提问让人不得不无语,我只是沿用了提问者的语气而已!认真虚心提问通常会得到好的回答,我的回答被采纳为最佳答案的也不少啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lzh901024
2011-04-08
知道答主
回答量:2
采纳率:0%
帮助的人:0
展开全部
sourcegrid
试下这个~
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
解忧解忧杂货铺
2011-03-22 · TA获得超过590个赞
知道小有建树答主
回答量:1536
采纳率:33%
帮助的人:689万
展开全部
自定义表头不行吗?在 creat的时候 忘记是个什么方法了。
追问
额, 高手!能回忆起来点具体内容吗?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式