.net WINFORM的GDI双缓冲的实现

2021-04-22 05:27

阅读:727

标签:red   for   and   参数   from   col   color   image   nbsp   

有时候在窗体中执行不断的GDI+操作的时候会出现闪速的状况,除了修改窗体的参数,更应该解决刷新本身的问题,双缓冲可能就是这样来的。

 

方法1:

用GDI绘制在位图上,然后再重新生成位图

Bitmap bt = new Bitmap(510, 510);
Graphics g = Graphics.FromImage(bt);



g.DrawEllipse(Pens.Red, 100, 100, new Random().Next(1, 60), 50);
g.Dispose();

gb.DrawImage(bt,0,0);
gb.Dispose();

 

.net WINFORM的GDI双缓冲的实现

标签:red   for   and   参数   from   col   color   image   nbsp   

原文地址:http://www.cnblogs.com/heylk/p/8025551.html


评论


亲,登录后才可以留言!