RowMergeView.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Drawing.Design;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.Collections;
  10. using System.Reflection;
  11. using System.Runtime.InteropServices;
  12. /// <summary>
  13. /// DataGridView行合并.请对属性MergeColumnNames 赋值既可
  14. /// </summary>
  15. public partial class RowMergeView : DataGridView
  16. {
  17. #region 构造函数
  18. public RowMergeView()
  19. {
  20. //InitializeComponent();
  21. }
  22. #endregion
  23. #region 重写的事件
  24. protected override void OnPaint(PaintEventArgs pe)
  25. {
  26. // TODO: 在此处添加自定义绘制代码
  27. // 调用基类 OnPaint
  28. base.OnPaint(pe);
  29. }
  30. protected override void OnCellPainting(DataGridViewCellPaintingEventArgs e)
  31. {
  32. try
  33. {
  34. if (e.RowIndex > -1 && e.ColumnIndex > -1)
  35. {
  36. DrawCell(e);
  37. }
  38. else
  39. {
  40. //二维表头
  41. if (e.RowIndex == -1)
  42. {
  43. if (SpanRows.ContainsKey(e.ColumnIndex)) //被合并的列
  44. {
  45. //画边框
  46. Graphics g = e.Graphics;
  47. e.Paint(e.CellBounds, DataGridViewPaintParts.Background | DataGridViewPaintParts.Border);
  48. int left = e.CellBounds.Left, top = e.CellBounds.Top + 2,
  49. right = e.CellBounds.Right, bottom = e.CellBounds.Bottom;
  50. switch (SpanRows[e.ColumnIndex].Position)
  51. {
  52. case 1:
  53. left += 2;
  54. break;
  55. case 2:
  56. break;
  57. case 3:
  58. right -= 2;
  59. break;
  60. }
  61. //画上半部分底色
  62. g.FillRectangle(new SolidBrush(this._mergecolumnheaderbackcolor), left, top,
  63. right - left, (bottom - top) / 2);
  64. //画中线
  65. g.DrawLine(new Pen(this.GridColor), left, (top + bottom) / 2,
  66. right, (top + bottom) / 2);
  67. //写小标题
  68. StringFormat sf = new StringFormat();
  69. sf.Alignment = StringAlignment.Center;
  70. sf.LineAlignment = StringAlignment.Center;
  71. g.DrawString(e.Value + "", e.CellStyle.Font, Brushes.Black,
  72. new Rectangle(left, (top + bottom) / 2, right - left, (bottom - top) / 2), sf);
  73. left = this.GetColumnDisplayRectangle(SpanRows[e.ColumnIndex].Left, true).Left - 2;
  74. if (left < 0) left = this.GetCellDisplayRectangle(-1, -1, true).Width;
  75. right = this.GetColumnDisplayRectangle(SpanRows[e.ColumnIndex].Right, true).Right - 2;
  76. if (right < 0) right = this.Width;
  77. g.DrawString(SpanRows[e.ColumnIndex].Text, e.CellStyle.Font, Brushes.Black,
  78. new Rectangle(left, top, right - left, (bottom - top) / 2), sf);
  79. e.Handled = true;
  80. }
  81. }
  82. }
  83. base.OnCellPainting(e);
  84. }
  85. catch
  86. { }
  87. }
  88. protected override void OnCellClick(DataGridViewCellEventArgs e)
  89. {
  90. base.OnCellClick(e);
  91. }
  92. #endregion
  93. #region 自定义方法
  94. /// <summary>
  95. /// 画单元格
  96. /// </summary>
  97. /// <param name="e"></param>
  98. private void DrawCell(DataGridViewCellPaintingEventArgs e)
  99. {
  100. if (e.CellStyle.Alignment == DataGridViewContentAlignment.NotSet)
  101. {
  102. e.CellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
  103. }
  104. Brush gridBrush = new SolidBrush(this.GridColor);
  105. SolidBrush backBrush = new SolidBrush(e.CellStyle.BackColor);
  106. SolidBrush fontBrush = new SolidBrush(e.CellStyle.ForeColor);
  107. int cellwidth;
  108. //上面相同的行数
  109. int UpRows = 0;
  110. //下面相同的行数
  111. int DownRows = 0;
  112. //总行数
  113. int count = 0;
  114. if (this.MergeColumnNames.Contains(this.Columns[e.ColumnIndex].Name) && e.RowIndex != -1)
  115. {
  116. cellwidth = e.CellBounds.Width;
  117. Pen gridLinePen = new Pen(gridBrush);
  118. string curValue = e.Value == null ? "" : e.Value.ToString().Trim();
  119. string curSelected = this.CurrentRow.Cells[e.ColumnIndex].Value == null ? "" : this.CurrentRow.Cells[e.ColumnIndex].Value.ToString().Trim();
  120. if (!string.IsNullOrEmpty(curValue))
  121. {
  122. #region 获取下面的行数
  123. for (int i = e.RowIndex; i < this.Rows.Count; i++)
  124. {
  125. if (this.Rows[i].Cells[e.ColumnIndex].Value.ToString().Equals(curValue))
  126. {
  127. //this.Rows[i].Cells[e.ColumnIndex].Selected = this.Rows[e.RowIndex].Cells[e.ColumnIndex].Selected;
  128. DownRows++;
  129. if (e.RowIndex != i)
  130. {
  131. cellwidth = cellwidth < this.Rows[i].Cells[e.ColumnIndex].Size.Width ? cellwidth : this.Rows[i].Cells[e.ColumnIndex].Size.Width;
  132. }
  133. }
  134. else
  135. {
  136. break;
  137. }
  138. }
  139. #endregion
  140. #region 获取上面的行数
  141. for (int i = e.RowIndex; i >= 0; i--)
  142. {
  143. if (this.Rows[i].Cells[e.ColumnIndex].Value.ToString().Equals(curValue))
  144. {
  145. //this.Rows[i].Cells[e.ColumnIndex].Selected = this.Rows[e.RowIndex].Cells[e.ColumnIndex].Selected;
  146. UpRows++;
  147. if (e.RowIndex != i)
  148. {
  149. cellwidth = cellwidth < this.Rows[i].Cells[e.ColumnIndex].Size.Width ? cellwidth : this.Rows[i].Cells[e.ColumnIndex].Size.Width;
  150. }
  151. }
  152. else
  153. {
  154. break;
  155. }
  156. }
  157. #endregion
  158. count = DownRows + UpRows - 1;
  159. if (count < 2)
  160. {
  161. return;
  162. }
  163. }
  164. if (this.Rows[e.RowIndex].Selected)
  165. {
  166. backBrush.Color = e.CellStyle.SelectionBackColor;
  167. fontBrush.Color = e.CellStyle.SelectionForeColor;
  168. }
  169. //以背景色填充
  170. e.Graphics.FillRectangle(backBrush, e.CellBounds);
  171. //画字符串
  172. PaintingFont(e, cellwidth, UpRows, DownRows, count);
  173. if (DownRows == 1)
  174. {
  175. e.Graphics.DrawLine(gridLinePen, e.CellBounds.Left, e.CellBounds.Bottom - 1, e.CellBounds.Right - 1, e.CellBounds.Bottom - 1);
  176. count = 0;
  177. }
  178. // 画右边线
  179. e.Graphics.DrawLine(gridLinePen, e.CellBounds.Right - 1, e.CellBounds.Top, e.CellBounds.Right - 1, e.CellBounds.Bottom);
  180. e.Handled = true;
  181. }
  182. }
  183. /// <summary>
  184. /// 画字符串
  185. /// </summary>
  186. /// <param name="e"></param>
  187. /// <param name="cellwidth"></param>
  188. /// <param name="UpRows"></param>
  189. /// <param name="DownRows"></param>
  190. /// <param name="count"></param>
  191. private void PaintingFont(System.Windows.Forms.DataGridViewCellPaintingEventArgs e, int cellwidth, int UpRows, int DownRows, int count)
  192. {
  193. SolidBrush fontBrush = new SolidBrush(e.CellStyle.ForeColor);
  194. int fontheight = (int)e.Graphics.MeasureString(e.Value.ToString(), e.CellStyle.Font).Height;
  195. int fontwidth = (int)e.Graphics.MeasureString(e.Value.ToString(), e.CellStyle.Font).Width;
  196. int cellheight = e.CellBounds.Height;
  197. if (e.CellStyle.Alignment == DataGridViewContentAlignment.BottomCenter)
  198. {
  199. e.Graphics.DrawString((String)e.Value, e.CellStyle.Font, fontBrush, e.CellBounds.X + (cellwidth - fontwidth) / 2, e.CellBounds.Y + cellheight * DownRows - fontheight);
  200. }
  201. else if (e.CellStyle.Alignment == DataGridViewContentAlignment.BottomLeft)
  202. {
  203. e.Graphics.DrawString((String)e.Value, e.CellStyle.Font, fontBrush, e.CellBounds.X, e.CellBounds.Y + cellheight * DownRows - fontheight);
  204. }
  205. else if (e.CellStyle.Alignment == DataGridViewContentAlignment.BottomRight)
  206. {
  207. e.Graphics.DrawString((String)e.Value, e.CellStyle.Font, fontBrush, e.CellBounds.X + cellwidth - fontwidth, e.CellBounds.Y + cellheight * DownRows - fontheight);
  208. }
  209. else if (e.CellStyle.Alignment == DataGridViewContentAlignment.MiddleCenter)
  210. {
  211. e.Graphics.DrawString((String)e.Value, e.CellStyle.Font, fontBrush, e.CellBounds.X + (cellwidth - fontwidth) / 2, e.CellBounds.Y - cellheight * (UpRows - 1) + (cellheight * count - fontheight) / 2);
  212. }
  213. else if (e.CellStyle.Alignment == DataGridViewContentAlignment.MiddleLeft)
  214. {
  215. e.Graphics.DrawString((String)e.Value, e.CellStyle.Font, fontBrush, e.CellBounds.X, e.CellBounds.Y - cellheight * (UpRows - 1) + (cellheight * count - fontheight) / 2);
  216. }
  217. else if (e.CellStyle.Alignment == DataGridViewContentAlignment.MiddleRight)
  218. {
  219. e.Graphics.DrawString((String)e.Value, e.CellStyle.Font, fontBrush, e.CellBounds.X + cellwidth - fontwidth, e.CellBounds.Y - cellheight * (UpRows - 1) + (cellheight * count - fontheight) / 2);
  220. }
  221. else if (e.CellStyle.Alignment == DataGridViewContentAlignment.TopCenter)
  222. {
  223. e.Graphics.DrawString((String)e.Value, e.CellStyle.Font, fontBrush, e.CellBounds.X + (cellwidth - fontwidth) / 2, e.CellBounds.Y - cellheight * (UpRows - 1));
  224. }
  225. else if (e.CellStyle.Alignment == DataGridViewContentAlignment.TopLeft)
  226. {
  227. e.Graphics.DrawString((String)e.Value, e.CellStyle.Font, fontBrush, e.CellBounds.X, e.CellBounds.Y - cellheight * (UpRows - 1));
  228. }
  229. else if (e.CellStyle.Alignment == DataGridViewContentAlignment.TopRight)
  230. {
  231. e.Graphics.DrawString((String)e.Value, e.CellStyle.Font, fontBrush, e.CellBounds.X + cellwidth - fontwidth, e.CellBounds.Y - cellheight * (UpRows - 1));
  232. }
  233. else
  234. {
  235. e.Graphics.DrawString((String)e.Value, e.CellStyle.Font, fontBrush, e.CellBounds.X + (cellwidth - fontwidth) / 2, e.CellBounds.Y - cellheight * (UpRows - 1) + (cellheight * count - fontheight) / 2);
  236. }
  237. }
  238. #endregion
  239. #region 属性
  240. /// <summary>
  241. /// 设置或获取合并列的集合
  242. /// </summary>
  243. [MergableProperty(false)]
  244. [Editor("System.Windows.Forms.Design.ListControlStringCollectionEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(UITypeEditor))]
  245. [DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Visible)]
  246. [Localizable(true)]
  247. [Description("设置或获取合并列的集合"), Browsable(true), Category("单元格合并")]
  248. public List<string> MergeColumnNames
  249. {
  250. get
  251. {
  252. return _mergecolumnname;
  253. }
  254. set
  255. {
  256. _mergecolumnname = value;
  257. }
  258. }
  259. private List<string> _mergecolumnname = new List<string>();
  260. #endregion
  261. #region 二维表头
  262. private struct SpanInfo //表头信息
  263. {
  264. public SpanInfo(string Text, int Position, int Left, int Right)
  265. {
  266. this.Text = Text;
  267. this.Position = Position;
  268. this.Left = Left;
  269. this.Right = Right;
  270. }
  271. public string Text; //列主标题
  272. public int Position; //位置,1:左,2中,3右
  273. public int Left; //对应左行
  274. public int Right; //对应右行
  275. }
  276. private Dictionary<int, SpanInfo> SpanRows = new Dictionary<int, SpanInfo>();//需要2维表头的列
  277. /// <summary>
  278. /// 合并列
  279. /// </summary>
  280. /// <param name="ColIndex">列的索引</param>
  281. /// <param name="ColCount">需要合并的列数</param>
  282. /// <param name="Text">合并列后的文本</param>
  283. public void AddSpanHeader(int ColIndex, int ColCount, string Text)
  284. {
  285. if (ColCount < 2)
  286. {
  287. throw new Exception("行宽应大于等于2,合并1列无意义。");
  288. }
  289. //将这些列加入列表
  290. int Right = ColIndex + ColCount - 1; //同一大标题下的最后一列的索引
  291. SpanRows[ColIndex] = new SpanInfo(Text, 1, ColIndex, Right); //添加标题下的最左列
  292. SpanRows[Right] = new SpanInfo(Text, 3, ColIndex, Right); //添加该标题下的最右列
  293. for (int i = ColIndex + 1; i < Right; i++) //中间的列
  294. {
  295. SpanRows[i] = new SpanInfo(Text, 2, ColIndex, Right);
  296. }
  297. }
  298. /// <summary>
  299. /// 清除合并的列
  300. /// </summary>
  301. public void ClearSpanInfo()
  302. {
  303. SpanRows.Clear();
  304. }
  305. /// <summary>
  306. /// 二维表头的背景颜色
  307. /// </summary>
  308. [Description("二维表头的背景颜色"), Browsable(true), Category("二维表头")]
  309. public Color MergeColumnHeaderBackColor
  310. {
  311. get { return this._mergecolumnheaderbackcolor; }
  312. set { this._mergecolumnheaderbackcolor = value; }
  313. }
  314. private Color _mergecolumnheaderbackcolor = System.Drawing.SystemColors.Control;
  315. #endregion
  316. }