C# Winform DataGridView中实现二维表头
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# Winform DataGridView中实现二维表头相关的知识,希望对你有一定的参考价值。
别发那些用Pen之类画出来的,我下过,试过很多。有的确实不错,但前提是列数不多,整个表格宽度不超过界面,像我这种有很多列,超出窗体宽度的时候,滚动条一拉,上面画出来的列头就花了。
请高手赐招!
分不多,请见谅!
上面这个截图,是我在Winform中用html画出来的,现在求个用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,效果图
至于表尾合计,也做出了原型。二维表头+表尾合计,基本上满足需求了。追问
这个方案我找到过,也用过。
就像我上面的问题补充那样~ 当列过多的时,横向滚动条一拉就列头就花了。
看了你给别人的历史回答,挺无语的~
追答不是我的回答无语,是提问者的提问让人不得不无语,我只是沿用了提问者的语气而已!认真虚心提问通常会得到好的回答,我的回答被采纳为最佳答案的也不少啊
追问哦,那我这个问题,您给个解决方案吧...可以用,再追加分。
参考技术B sourcegrid试下这个~本回答被提问者采纳 参考技术C 自定义表头不行吗?在 creat的时候 忘记是个什么方法了。追问
额, 高手!能回忆起来点具体内容吗?
winform c# Datagridview 选中行 急!!!
int rows = dataGridView1.indexrows;//获得选种行的索引
string str = dataGridView1.rows[rows].cells[num].text;//获取第rows行的索引为num列的值
我写的这样可以获取选种的行,列的值!
问题是indexrow这个属性居然没有...但是有 selectedrows 选中行的集合
我现在要做的是选种用户选中的列...
各位朋友有没有什么方法?给点代码参考!
谢谢各位!我自己已经解决了!
不过有遗憾的是
int rows = dataGridView1.indexrows;//获得选种行的索引
这里的indexrows属性怎么没有呢?
winform c#!
this.dataGridView1.SelectedCells.rowindex 与 ColumnIndex 为当前选中的行于列序号。
注,使用时需要先判断this.dataGridView1.SelectedCells.count,不为0 在进行上面的操作。 参考技术A dgv_CaiGouFuKuan.CurrentRow.Cells[num].Value.ToString()
这样就是得到当前选中行的第几列的值 参考技术B http://heisetoufa.javaeye.com/blog/search?query=Datagridview+ 参考技术C dataGridView1.selectedrows[0].cells[num].text 就可以了
以上是关于C# Winform DataGridView中实现二维表头的主要内容,如果未能解决你的问题,请参考以下文章
winform窗体——DataGridView控件及通过此控件中实现增删改查
关于Winform下DataGridView中实现checkbox全选反选同步列表项的处理