找回密码
 立即注册

QQ登录

只需一步,快速开始

thrall

超级版主

14

主题

174

帖子

2026

积分

超级版主

Rank: 8Rank: 8

积分
2026

活字格认证微信认证勋章

thrall
超级版主   /  发表于:2013-5-7 11:23  /   查看:6364  /  回复:0
我们在使用Office Excel的时候,有很多时候需要冻结行或者列。这时,Excel会在冻结的行列和非冻结的区域之间绘制上一条明显的黑线。如下图:


(图1)
WinForm下的DataGridView控件也能实现类似的冻结行或者列的功能(参见:http://msdn.microsoft.com/zh-cn/library/28e9w2e1(VS.85).aspx) ,但是呢,DataGridView控件默认不会在冻结列或者行的分界处绘制一个明显的分界线,这样的话,最终用户很难注意到当前有列或者行是冻结的。如下图所示:你能很快的找到那一列是Freeze的么?

(图2)
正是因为如此,我们如果能做出类似Excel的效果,就可以大大提高数据的可读性。
通常,我们如果想在现有的控件上多画点什么,就会去Override OnPaint方法,然后加入自己的OwnerDraw逻辑,但是呢在DataGridView上有一些困难:
1.如何确定冻结分界线的位置
2.如何保证分界线不会绘制到ScrollBar上
研究了一下,我们可以借用DataGridView提供的CellPainting方法。在DataGridView绘制每一个Cell的时候判断当前Cell是否是分界线所在的位置,然后进行绘制。最终做出的效果如下图:

(图3)
以下是DataGridView控件扩展源代码:
  1. public class DataGridViewEx : DataGridView
  2.     {
  3.         protected override void OnCellPainting(DataGridViewCellPaintingEventArgs e)
  4.         {
  5.             base.OnCellPainting(e);

  6.             //
  7.             // Paints the Frozen line
  8.             //
  9.             int lastFreezeColumnIndex = GetDisplayColumnFrozenLineIndex();
  10.             int lastFreezeRowIndex = GetDisplayRowFrozenLineIndex();

  11.             bool drawRowLine = lastFreezeRowIndex != -1 && lastFreezeRowIndex == e.RowIndex;
  12.             bool drawColumLine = lastFreezeColumnIndex != -1 && lastFreezeColumnIndex == e.ColumnIndex;

  13.             if (drawRowLine || drawColumLine)
  14.             {
  15.                 e.Paint(e.ClipBounds, e.PaintParts);

  16.                 if (drawColumLine)
  17.                 {
  18.                     e.Graphics.DrawLine(Pens.Black,
  19.                         e.CellBounds.Right - 1, e.CellBounds.Top,
  20.                         e.CellBounds.Right - 1, this.ClientRectangle.Bottom);
  21.                 }
  22.                 if (drawRowLine)
  23.                 {
  24.                     e.Graphics.DrawLine(Pens.Black,
  25.                         e.CellBounds.Left, e.CellBounds.Bottom - 1,
  26.                         e.CellBounds.Right, e.CellBounds.Bottom - 1);
  27.                 }

  28.                 e.Handled = true;
  29.             }
  30.         }

  31.         private int GetDisplayColumnFrozenLineIndex()
  32.         {
  33.             int lastFreezeColumnIndex = -1;
  34.             for (int i = 0; i < this.ColumnCount; i++)
  35.             {
  36.                 DataGridViewColumn column = this.Columns[i];
  37.                 if (column.Visible && column.Frozen)
  38.                 {
  39.                     lastFreezeColumnIndex = i;
  40.                 }
  41.                 else if (!column.Frozen)
  42.                 {
  43.                     return lastFreezeColumnIndex;
  44.                 }
  45.             }
  46.             return lastFreezeColumnIndex;
  47.         }

  48.         private int GetDisplayRowFrozenLineIndex()
  49.         {
  50.             int lastFreezeRowIndex = -1;
  51.             for (int i = 0; i < this.RowCount; i++)
  52.             {
  53.                 DataGridViewRow row = this.Rows[i];
  54.                 if (row.Visible && row.Frozen)
  55.                 {
  56.                     lastFreezeRowIndex = i;
  57.                 }
  58.                 else if (!row.Frozen)
  59.                 {
  60.                     return lastFreezeRowIndex;
  61.                 }
  62.             }
  63.             return lastFreezeRowIndex;

  64.         }
  65.     }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 立即注册
返回顶部