请教VS2005下WinForm程序的合并表头实现,谢谢
如图所示:VS2005下WinForm中实现。谢谢 --------------------编程问答-------------------- 可恶的百度,居然不能浏览图片!
图片见:/upload/20131226/fd6229090f6d7429e92488d9.gif --------------------编程问答-------------------- 还是看不了。 --------------------编程问答-------------------- ????????图片看不到。哎!!!baidu啊。 --------------------编程问答-------------------- 图片呢??? --------------------编程问答-------------------- TableCellCollection tcHeader = e.Row.Cells;
tcHeader.Clear();
tcHeader.Add(new TableHeaderCell());
tcHeader[0].Attributes.Add("rowspan", "3"); //跨Row
tcHeader[0].Attributes.Add("bgcolor", "white");
tcHeader[0].Text = "";
tcHeader.Add(new TableHeaderCell());
//tcHeader[1].Attributes.Add("bgcolor", "Red");
tcHeader[1].Attributes.Add("colspan", "6"); //跨Column
tcHeader[1].Text = "全部信息</th></tr><tr>"; --------------------编程问答-------------------- 此贴转至:
http://topic.csdn.net/u/20080909/13/9ca93ea7-ca5e-4594-8388-4b80da4d0c78.html --------------------编程问答-------------------- --------------------编程问答-------------------- 有这样的例子,搜搜!!
datagridview控件进行扩展!!
补充:.NET技术 , C#