2006-07-14

对C#中的TreeView添加背景图

来源: VCKBASE 作者:李静南 评论 0 条
  在微软的.NET的Forms窗口控件中,比如Treeview和ListView,仅仅是对通用控件的简单封装,因此他们不正常的引发Paint事件。 微软所发布内容中,能看到的唯一建议就是设置控件的ControlStyles.UserPaint类型,然后自己为控件做所有的绘图操作。 (译注:老外提供了一个TreeViewWithPaint控件类,派生自TreeView类,提供了Paint事件的挂接。)

  一、为了解决这个问题,我们在类内部使用了一个基于Bitmap类的Graphics对象。当任何窗口重新定义大小时候,对象都会重建。

//Recreate internal graphics object
protected override void OnResize( System.EventArgs e )
{
 if( internalBitmap == null || internalBitmap.Width != Width || internalBitmap.Height != Height )
 {
  if( Width != 0 && Height != 0 )
  {
   DisposeInternal();
   internalBitmap = new Bitmap( Width, Height );
   internalGraphics = Graphics.FromImage( internalBitmap );
  }
 }
}

  二、重写窗口过程

  当控件收到了WM_PAINT消息时候,将执行下面的三个步骤:

  1. 通过一个内部的WM_PRINTCLIENT消息,让原来的控件过程把图象画到内部的Graphics对象上。

//Draw Internal Graphics
IntPtr hdc = internalGraphics.GetHdc();
Message printClientMessage = Message.Create( Handle, WM_PRINTCLIENT, hdc, IntPtr.Zero );
DefWndProc( ref printClientMessage );
internalGraphics.ReleaseHdc( hdc );

  2. 使用内部的Graphics对象建立PaintEventArgs参数,引发用户的OnPaint()函数。

//Add the missing OnPaint() call
OnPaint( new PaintEventArgs( internalGraphics, Rectangle.FromLTRB(
updateRect.left,
updateRect.top,
updateRect.right,
updateRect.bottom ) ) );

  3. 把内部Graphics对象的位图拷贝到屏幕的Graphics设备上。

//Draw Screen Graphics
screenGraphics.DrawImage( internalBitmap, 0, 0 );

WM_ERASEBKGND消息被过滤掉,什么都不做。 case WM_ERASEBKGND:
//removes flicker
return;

  三、所提供的代码和测试程序能使用Paint事件在TreeNode在被选中的时候,在其边框上画个黄色的边框。但是,其实对于我实际要用的项目来说,需要添加背景图的功能没有实现。而这里离我们的目的还有一步之遥,我们对前文绘图过程2和3之间加一个步骤:


(本文仅表明作者个人观点,不代表本站及其管理员立场.) 推荐 收藏 投稿 打印 返回 关闭
上一篇:Taglib 原理和实现之支持El表达式  
下一篇:Taglib 原理和实现之嵌套和属性读取
    评论加载中…
Bitmap temp = new Bitmap(internalBitmap, internalBitmap.Size); // 建立一个临时的位图temp,保存前面绘好的界面

temp.MakeTransparent(Color.White); // 设置白色为透明色
internalGraphics.FillRectangle(Brushes.White, 0, 0, this.Bounds.Width, this.Bounds.Height);
// 在原来的内部位图对象上,用白色重画背景
if (image != null) // 假如设置了背景图,就在内部对象上画背景
internalGraphics.DrawImage (image, 0, 0, image.Width, image.Height);
internalGraphics.DrawImage(temp, 0, 0, temp.Width, temp.Height);// 把前面绘好的界面按白色为透明色复合到内部位图上
screenGraphics.DrawImage( internalBitmap, 0, 0 ); // 把合成的临时位图刷到屏幕上
共2页: 上一页 1 [2] 下一页
 推荐文章
     

网站首页  -  网站地图 -   站长论坛  -  网站投稿  -    -  网站管理
Copyright © 2008 芜湖站长站 All Rights Reserved 皖ICP备07500611号