Window 合并单元格

 1 private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)

 2         {

 3             // 对第1列相同单元格进行合并

 4             if (e.ColumnIndex == 0 && e.RowIndex != -1)

 5             {

 6                 using

 7                     (

 8                     Brush gridBrush = new SolidBrush(this.dataGridView1.GridColor),

 9                     backColorBrush = new SolidBrush(e.CellStyle.BackColor)

10                     )

11                 {

12                     using (Pen gridLinePen = new Pen(gridBrush))

13                     {

14                         // 清除单元格

15                         e.Graphics.FillRectangle(backColorBrush, e.CellBounds);

16 

17                         // 画 Grid 边线(仅画单元格的底边线和右边线)

18                         //   如果下一行和当前行的数据不同,则在当前的单元格画一条底边线

19                         if (e.RowIndex < dataGridView1.Rows.Count - 1 &&

20                         dataGridView1.Rows[e.RowIndex + 1].Cells[e.ColumnIndex].Value.ToString() != e.Value.ToString())

21                             e.Graphics.DrawLine(gridLinePen, e.CellBounds.Left,

22                             e.CellBounds.Bottom - 1, e.CellBounds.Right - 1,

23                             e.CellBounds.Bottom - 1);

24                         // 画右边线

25                         e.Graphics.DrawLine(gridLinePen, e.CellBounds.Right - 1,

26                             e.CellBounds.Top, e.CellBounds.Right - 1,

27                             e.CellBounds.Bottom);

28 

29                         // 画(填写)单元格内容,相同的内容的单元格只填写第一个

30                         if (e.Value != null)

31                         {

32                             if (e.RowIndex > 0 && dataGridView1.Rows[e.RowIndex - 1].Cells[e.ColumnIndex].Value.ToString() == e.Value.ToString())

33                             {

34                                //不填写内容

35                             }

36                             else

37                             {

38                                 e.Graphics.DrawString((String)e.Value, e.CellStyle.Font,

39                                     Brushes.Black, e.CellBounds.X + 2,

40                                     e.CellBounds.Y + 5, StringFormat.GenericDefault);

41                             }

42                         }

43                         e.Handled = true;

44                     }

45                 }

46             }

47 

48 

49         }

 

你可能感兴趣的:(window)