datagridview合并表头

form的构造函数里写下如下代码

  1. Utility.exGridView.isEnLarged = false;

datagridviewcellpaiting事件中写如下代码

  1. Utility.exGridView exG = new Utility.exGridView();
  2. List colNameCollection=new List();
  3. for (int i = 0; i < 10; i++)
  4. {
  5. //"colDraw"+i.ToString()是columnName的属性值
  6. colNameCollection.Add("colDraw" + i.ToString());
  7. }
  8. exG.MergeHeader(sender, e, colNameCollection, "0-9中奖号码分布图");


4.效果截图

 

5.源文件(没找到添加附件的地方,就贴出代码了)

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Windows.Forms;
  5. using System.Drawing;
  6. namespace Utility
  7. {
  8.     public class exGridView
  9.     {
  10.         #region 合并列时使用到的位置和大小属性
  11.         int cTop = 0;//被合并表头区域的顶部坐标
  12.         int cLeft = 0;//被合并表头区域的左边坐标
  13.         /// <summary>
  14.         /// 被合并表头区域的宽
  15.         /// </summary>
  16.         int cWidth = 0;
  17.         int cHeight = 0;//。。。高
  18.         #endregion 
  19.         /// <summary>
  20.         /// 判断是否已经将datagridview的表头变高了,只增高一次。
  21.         /// </summary>
  22.         public static bool isEnLarged = false;
  23.         /// <summary>
  24.         /// 合并表头,用在dataGridView的CellPainting事件中。
  25.         /// </summary>
  26.         /// <param name="sender">需要重绘的dataGridview</param>
  27.         /// <param name="e">CellPainting中的参数</param>
  28.         ///<param name="colName">列的集合(列必须是连续的,第一列放在最前面)</param>
  29.         /// <param name="headerText">列合并后显示的文本</param>
  30.         public void MergeHeader(object sender, DataGridViewCellPaintingEventArgs e,List<string> colNameCollection,string headerText)
  31.         {
  32.             if (e.RowIndex == -1)
  33.             {
  34.                 DataGridView dataGridView1=sender as DataGridView;
  35.                 string colName = dataGridView1.Columns[e.ColumnIndex].Name;
  36.                 if (!isEnLarged)
  37.                 {
  38.                     //0.扩展表头高度为当前的2倍
  39.                     dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.EnableResizing;
  40.                     dataGridView1.ColumnHeadersHeight = e.CellBounds.Height * 2;
  41.                     isEnLarged = true;
  42.                 }
  43.                 if (colNameCollection.Contains(colName))
  44.                 {
  45.                     #region 重绘列头
  46.                     //1.计算colLen个列的区域
  47.                     if (colNameCollection.IndexOf(colName)==0)
  48.                     {
  49.                         cTop = e.CellBounds.Top;
  50.                         cLeft = e.CellBounds.Left;                        
  51.                         cWidth = e.CellBounds.Width;
  52.                         cHeight = e.CellBounds.Height/2;
  53.                         foreach(string colNameItem in colNameCollection)
  54.                         {
  55.                             if (colNameItem.Equals(colName))
  56.                             {//除去自己一个,加了之后colLen-1个列的宽
  57.                                 continue;
  58.                             } 
  59.                             cWidth += dataGridView1.Columns[colNameItem].Width;                           
  60.                         }                       
  61.                     }
  62.                     Rectangle cArea = new Rectangle(cLeft, cTop, cWidth, cHeight);
  63.                     //2.把区域设置为背景色,没有列的分线及任何文字。
  64.                     using (Brush backColorBrush = new SolidBrush(e.CellStyle.BackColor))
  65.                     {
  66.                         e.Graphics.FillRectangle(backColorBrush, cArea);
  67.                     }
  68.                     //3.绘制新列头的边框
  69.                     using (Pen gridPen = new Pen(dataGridView1.GridColor))
  70.                     {
  71.                         //3.1 上部边框
  72.                         e.Graphics.DrawLine(gridPen, cLeft, cTop, cLeft + cWidth, cTop);
  73.                         using (Pen hilightPen = new Pen(Color.WhiteSmoke))
  74.                         {
  75.                             //3.2 顶部高光
  76.                             e.Graphics.DrawLine(hilightPen, cLeft, cTop + 1, cLeft + cWidth, cTop + 1);
  77.                             //3.3 左部反光线
  78.                             e.Graphics.DrawLine(hilightPen, cLeft, cTop + 3, cLeft, cTop + cHeight - 2);
  79.                         }
  80.                         //3.4 下部边框
  81.                         e.Graphics.DrawLine(gridPen, cLeft, cTop + cHeight - 1, cLeft + cWidth, cTop + cHeight - 1);
  82.                         //3.5 右部边框                        
  83.                         e.Graphics.DrawLine(gridPen, cLeft + cWidth - 1, cTop, cLeft + cWidth - 1, cTop + cHeight);//(cTop+cHeight)/2);
  84.                     }
  85.                     //4.写文本
  86.                     if (colNameCollection.IndexOf(colName) == 0)
  87.                     {//不是第一列则不写文字。
  88.                         int wHeadStr = (int)(headerText.Length * e.CellStyle.Font.SizeInPoints);
  89.                         int wHeadCell = cWidth;
  90.                         int pHeadLeft = (wHeadCell - wHeadStr) / 2 - 6;
  91.                         using (Brush foreBrush = new SolidBrush(e.CellStyle.ForeColor))
  92.                         {
  93.                             e.Graphics.DrawString(headerText, e.CellStyle.Font, foreBrush, new PointF(cLeft + pHeadLeft, cTop + 3));
  94.                         }
  95.                     }
  96.                    
  97.                     //5 绘制子列背景
  98.                     int FatherColHeight = e.CellBounds.Height / 2;//上面一行的高度 
  99.                     using (Brush backColorBrush = new SolidBrush(e.CellStyle.BackColor))
  100.                     {
  101.                         e.Graphics.FillRectangle(backColorBrush, new Rectangle(e.CellBounds.X, e.CellBounds.Y + FatherColHeight, e.CellBounds.Width - 1, e.CellBounds.Height / 2 - 1));
  102.                     }
  103.                     //5.1绘制子列的边框                   
  104.                     using (Pen gridPen = new Pen(dataGridView1.GridColor))
  105.                     {
  106.                         using (Pen hilightPen = new Pen(Color.WhiteSmoke))
  107.                         {
  108.                             //5.2 左部反光线
  109.                             e.Graphics.DrawLine(hilightPen, cLeft, cTop + 3 + FatherColHeight, cLeft, cTop + cHeight - 2 + FatherColHeight);
  110.                         }
  111.                         //5.3 下部边框
  112.                         e.Graphics.DrawLine(gridPen, cLeft, cTop + cHeight - 1 + FatherColHeight, cLeft + cWidth, cTop + cHeight - 1 + FatherColHeight);
  113.                         //5.4 右部边框 
  114.                         e.Graphics.DrawLine(gridPen, e.CellBounds.X + e.CellBounds.Width - 1, e.CellBounds.Top + FatherColHeight, e.CellBounds.X + e.CellBounds.Width - 1, e.CellBounds.Top + e.CellBounds.Height + FatherColHeight);//(cTop+cHeight)/2);                    
  115.                     }
  116.                     //5.5 写子列的文本
  117.                     int wStr = (int)(dataGridView1.Columns[e.ColumnIndex].HeaderText.Length * e.CellStyle.Font.SizeInPoints);
  118.                     int wCell = e.CellBounds.Width;
  119.                     int pLeft = (wCell - wStr) / 2;//相对CELL左边框的左坐标
  120.                     using (Brush foreBrush = new SolidBrush(e.CellStyle.ForeColor))
  121.                     {
  122.                         e.Graphics.DrawString(dataGridView1.Columns[e.ColumnIndex].HeaderText, e.CellStyle.Font, foreBrush, new PointF(e.CellBounds.X + pLeft, cTop + 3 + FatherColHeight));
  123.                     }                    
  124.                     #endregion
  125.                     e.Handled = true;
  126.                 }
  127.             }
  128.         }       
  129.     }
  130. }

  • 2
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值