Double Buffering Windows Forms

As much as we would like it not to be the case, graphics can be slow enough to watch as the screen is refreshed. Our eyes, sensitive to movement and particularly to edge detection so that we don't walk off of cliffs or run into trees, often pick up the redraw cycle of computer graphics which, at best is mildly annoying or at worst can cause headaches, eyestrain and in susceptible people, even fits.

Much of this effect is caused by the sequential re-drawing of many graphical elements such as a chart with many lines or a game with many moving items. In a perfect world, the sequential redraw would be completely hidden from the user and the completed graphic presented in its entirety. This is essentially the technique used in double buffering.

Windows Forms provides an automatic method of double buffering that can be used by simply setting a few styles in your form or control. For most applications, this is enough but in certain cases, more control over the process is desirable so manually double buffering a control is also possible.

First, take a look at the standard and built in method of double buffering. This is accomplished by setting the styles:

  • ControlStyles.AllPaintingInWmPaint
  • ControlStyles.UserPaint
  • ControlStyles.DoubleBuffer

When these are all set true, the draw process is modified so that instead of your Paint handler being passed a Graphics for the screen, it is passed a Graphics for an in-memory bitmap. When you draw to this Graphics object, you are drawing on an invisible image. At the end of the draw cycle, this bitmap is copied to the main window automatically and the actual pixels you see are all changed in a fraction of a second instead of one at a time as the draw cycle progresses.

To set up automatic double buffering for a Form, you would use the following line of code in the constructor, after the InitializeComponent method call.

C#

this.SetStyle(

ControlStyles.AllPaintingInWmPaint |

ControlStyles.UserPaint |

ControlStyles.DoubleBuffer,true);

VB

me.SetStyle(

ControlStyles.AllPaintingInWmPaint OR _

ControlStyles.UserPaint OR _

ControlStyles.DoubleBuffer,true)

Manual double buffering can be useful if you don't want the system so make assumptions for you such as whether the background is opaque or transparent or perhaps if you want to create a more complex buffering system. There are a few simple rules that you need to follow to get manual double buffering right.

First, don�t create a new back-buffer every draw cycle. Only create or destroy the bitmap when the window's client size changes. Second, only create a bitmap of the size you need. Clearing pixels takes time and so if there are more pixels than you need, you're just wasting processor cycles. Lastly, use the simplest draw method to copy the bitmap to the screen. DrawImageUnscaled is the way to go here.

Before the big demo, listing 1 shows all the salient points of a manual double buffered application.

private Bitmap _backBuffer;

protected override void OnPaint(PaintEventArgs e)

{

if(_backBuffer==null)

{

_backBuffer=new Bitmap(this.ClientSize.Width,this.ClientSize.Height);

}

Graphics g=Graphics.FromImage(_backBuffer);

//Paint your graphics on g here

g.Dispose();

//Copy the back buffer to the screen

e.Graphics.DrawImageUnscaled(_backBuffer,0,0);

//base.OnPaint (e); //optional but not recommended

}

protected override void OnPaintBackground(PaintEventArgs pevent)

{

//Don't allow the background to paint

}

protected override void OnSizeChanged(EventArgs e)

{

if(_backBuffer!=null)

{

_backBuffer.Dispose();

_backBuffer=null;

}

base.OnSizeChanged (e);

}

VB

Private _backBuffer As Bitmap

Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs)

If _backBuffer Is Nothing Then

_backBuffer = New Bitmap(Me.ClientSize.Width, Me.ClientSize.Height)

End If

Dim g As Graphics = Graphics.FromImage(_backBuffer)

'Paint on the Graphics object here

g.Dispose()

'Copy the back buffer to the screen

e.Graphics.DrawImageUnscaled(_backBuffer, 0, 0)

End Sub 'OnPaint

'base.OnPaint (e); //optional but not recommended

Protected Overrides Sub OnPaintBackground(ByVal pevent As PaintEventArgs)

End Sub 'OnPaintBackground

'Don't allow the background to paint

Protected Overrides Sub OnSizeChanged(ByVal e As EventArgs)

If Not (_backBuffer Is Nothing) Then

_backBuffer.Dispose()

_backBuffer = Nothing

End If

MyBase.OnSizeChanged(e)

End Sub 'OnSizeChanged

The following listing shows a practical double buffered application. A checkbox enables you to choose whether double buffering is used or if the graphics are drawn directly to the screen for the sake of comparison.

C#

using System;

using System.Drawing;

using System.Drawing.Drawing2D;

using System.Collections;

using System.ComponentModel;

using System.Windows.Forms;

using System.Data;

namespace DoubleBuffer

{

/// <summary>

/// Summary description for Form1.

/// </summary>

public class Form1 : System.Windows.Forms.Form

{

private System.Windows.Forms.Timer timer1;

private System.ComponentModel.IContainer components;

private System.Windows.Forms.CheckBox checkBox1;

float _angle;

bool _doBuffer;

public Form1()

{

//

// Required for Windows Form Designer support

//

InitializeComponent();

//

// TODO: Add any constructor code after InitializeComponent call

//

}

/// <summary>

/// Clean up any resources being used.

/// </summary>

protected override void Dispose( bool disposing )

{

if( disposing )

{

if (components != null)

{

components.Dispose();

}

}

base.Dispose( disposing );

}

#region Windows Form Designer generated code

/// <summary>

/// Required method for Designer support - do not modify

/// the contents of this method with the code editor.

/// </summary>

private void InitializeComponent()

{

this.components = new System.ComponentModel.Container();

this.timer1 = new System.Windows.Forms.Timer(this.components);

this.checkBox1 = new System.Windows.Forms.CheckBox();

this.SuspendLayout();

//

// timer1

//

this.timer1.Enabled = true;

this.timer1.Tick += new System.EventHandler(this.timer1_Tick);

//

// checkBox1

//

this.checkBox1.Location = new System.Drawing.Point(8, 8);

this.checkBox1.Name = "checkBox1";

this.checkBox1.TabIndex = 0;

this.checkBox1.Text = "Double Buffer";

this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);

//

// Form1

//

this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);

this.ClientSize = new System.Drawing.Size(292, 273);

this.Controls.Add(this.checkBox1);

this.Name = "Form1";

this.Text = "Form1";

this.ResumeLayout(false);

}

#endregion

/// <summary>

/// The main entry point for the application.

/// </summary>

[STAThread]

static void Main()

{

Application.Run(new Form1());

}

private void timer1_Tick(object sender, System.EventArgs e)

{

_angle+=3;

if(_angle>359)

_angle=0;

Invalidate();

}

private Bitmap _backBuffer;

protected override void OnPaint(PaintEventArgs e)

{

if(_backBuffer==null)

{

_backBuffer=new Bitmap(this.ClientSize.Width,this.ClientSize.Height);

}

Graphics g=null;

if(_doBuffer)

g=Graphics.FromImage(_backBuffer);

else

g=e.Graphics;

g.Clear(Color.White);

g.SmoothingMode=SmoothingMode.AntiAlias;

Matrix mx=new Matrix();

mx.Rotate(_angle,MatrixOrder.Append);

mx.Translate(this.ClientSize.Width/2,this.ClientSize.Height/2,MatrixOrder.Append);

g.Transform=mx;

g.FillRectangle(Brushes.Red,-100,-100,200,200);

mx=new Matrix();

mx.Rotate(-_angle,MatrixOrder.Append);

mx.Translate(this.ClientSize.Width/2,this.ClientSize.Height/2,MatrixOrder.Append);

g.Transform=mx;

g.FillRectangle(Brushes.Green,-75,-75,149,149);

mx=new Matrix();

mx.Rotate(_angle*2,MatrixOrder.Append);

mx.Translate(this.ClientSize.Width/2,this.ClientSize.Height/2,MatrixOrder.Append);

g.Transform=mx;

g.FillRectangle(Brushes.Blue,-50,-50,100,100);

if(_doBuffer)

{

g.Dispose();

//Copy the back buffer to the screen

e.Graphics.DrawImageUnscaled(_backBuffer,0,0);

}

//base.OnPaint (e); //optional but not recommended

}

protected override void OnPaintBackground(PaintEventArgs pevent)

{

//Don't allow the background to paint

}

protected override void OnSizeChanged(EventArgs e)

{

if(_backBuffer!=null)

{

_backBuffer.Dispose();

_backBuffer=null;

}

base.OnSizeChanged (e);

}

private void checkBox1_CheckedChanged(object sender, System.EventArgs e)

{

_doBuffer=this.checkBox1.Checked;

}

}

}

VB

Imports System

Imports System.Drawing

Imports System.Drawing.Drawing2D

Imports System.Collections

Imports System.ComponentModel

Imports System.Windows.Forms

Imports System.Data

Namespace DoubleBuffer

'/ <summary>

'/ Summary description for Form1.

'/ </summary>

Public Class Form1

Inherits System.Windows.Forms.Form

Private WithEvents timer1 As System.Windows.Forms.Timer

Private components As System.ComponentModel.IContainer

Private WithEvents checkBox1 As System.Windows.Forms.CheckBox

Private _angle As Single

Private _doBuffer As Boolean

Public Sub New()

'

' Required for Windows Form Designer support

'

InitializeComponent()

End Sub 'New

'

' TODO: Add any constructor code after InitializeComponent call

'

'/ <summary>

'/ Clean up any resources being used.

'/ </summary>

Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)

If disposing Then

If Not (components Is Nothing) Then

components.Dispose()

End If

End If

MyBase.Dispose(disposing)

End Sub 'Dispose

#Region "Windows Form Designer generated code"

'/ <summary>

'/ Required method for Designer support - do not modify

'/ the contents of this method with the code editor.

'/ </summary>

Private Sub InitializeComponent()

Me.components = New System.ComponentModel.Container

Me.timer1 = New System.Windows.Forms.Timer(Me.components)

Me.checkBox1 = New System.Windows.Forms.CheckBox

Me.SuspendLayout()

'

' timer1

'

Me.timer1.Enabled = True

'

' checkBox1

'

Me.checkBox1.Location = New System.Drawing.Point(8, 8)

Me.checkBox1.Name = "checkBox1"

Me.checkBox1.TabIndex = 0

Me.checkBox1.Text = "Double Buffer"

'

' Form1

'

Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)

Me.ClientSize = New System.Drawing.Size(292, 273)

Me.Controls.Add(checkBox1)

Me.Name = "Form1"

Me.Text = "Form1"

Me.ResumeLayout(False)

End Sub 'InitializeComponent

#End Region

'/ <summary>

'/ The main entry point for the application.

'/ </summary>

<STAThread()> _

Shared Sub Main()

Application.Run(New Form1)

End Sub 'Main

Private Sub timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs)Handles timer1.Tick

_angle += 3

If _angle > 359 Then

_angle = 0

End If

Invalidate()

End Sub 'timer1_Tick

Private _backBuffer As Bitmap

Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs)

If _backBuffer Is Nothing Then

_backBuffer = New Bitmap(Me.ClientSize.Width, Me.ClientSize.Height)

End If

Dim g As Graphics = Nothing

If _doBuffer Then

g = Graphics.FromImage(_backBuffer)

Else

g = e.Graphics

End If

g.Clear(Color.White)

g.SmoothingMode = SmoothingMode.AntiAlias

Dim mx As New Matrix

mx.Rotate(_angle, MatrixOrder.Append)

mx.Translate(Me.ClientSize.Width / 2, Me.ClientSize.Height / 2, MatrixOrder.Append)

g.Transform = mx

g.FillRectangle(Brushes.Red, -100, -100, 200, 200)

mx = New Matrix

mx.Rotate(-_angle, MatrixOrder.Append)

mx.Translate(Me.ClientSize.Width / 2, Me.ClientSize.Height / 2, MatrixOrder.Append)

g.Transform = mx

g.FillRectangle(Brushes.Green, -75, -75, 149, 149)

mx = New Matrix

mx.Rotate(_angle * 2, MatrixOrder.Append)

mx.Translate(Me.ClientSize.Width / 2, Me.ClientSize.Height / 2, MatrixOrder.Append)

g.Transform = mx

g.FillRectangle(Brushes.Blue, -50, -50, 100, 100)

If _doBuffer Then

g.Dispose()

'Copy the back buffer to the screen

e.Graphics.DrawImageUnscaled(_backBuffer, 0, 0)

End If

End Sub 'OnPaint

'base.OnPaint (e); //optional but not recommended

Protected Overrides Sub OnPaintBackground(ByVal pevent As PaintEventArgs)

End Sub 'OnPaintBackground

'Don't allow the background to paint

Protected Overrides Sub OnSizeChanged(ByVal e As EventArgs)

If Not (_backBuffer Is Nothing) Then

_backBuffer.Dispose()

_backBuffer = Nothing

End If

MyBase.OnSizeChanged(e)

End Sub 'OnSizeChanged

Private Sub checkBox1_CheckedChanged(ByVal sender As Object, ByVal e AsSystem.EventArgs) Handles checkBox1.CheckedChanged

_doBuffer = Me.checkBox1.Checked

End Sub 'checkBox1_CheckedChanged

End Class 'Form1

End Namespace 'DoubleBuffer

When running the program looks like this�

Figure 1: Double buffering in action.

原地址:

http://bobpowell.net/doublebuffer.aspx

Double Buffering Windows Forms的更多相关文章

  1. .net chart(图表)控件的使用-System.Windows.Forms.DataVisualization.dll

    这个案例指在介绍微软这套免费又功能强大的图表控件Microsoft Chart Controls for Microsoft .NET Framework 3.5,通过它,可让您的项目及报表,轻松套用 ...

  2. create Context Menu in Windows Forms application using C# z

    In this article let us see how to create Context Menu in Windows Forms application using C# Introduc ...

  3. DotNetBar For Windows Forms 12.5.0.2 官方原版及注册

    转自原文DotNetBar For Windows Forms 12.5.0.2 官方原版及注册 DotNetBar是一款带有56个 Windows Form 控件的工具箱,使开发人员可以轻而易举地创 ...

  4. C#Windows Forms 计算器--xdd

    一.计算器 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data ...

  5. Wizard Framework:一个自己开发的基于Windows Forms的向导开发框架

    最近因项目需要,我自己设计开发了一个基于Windows Forms的向导开发框架,目前我已经将其开源,并发布了一个NuGet安装包.比较囧的一件事是,当我发布了NuGet安装包以后,发现原来已经有一个 ...

  6. windows forms 上一个类似于wpf snoop 的工具: Hawkeye

    windows forms 上一个类似于wpf snoop 的工具: Hawkeye 周银辉 WPF上有snoop这样的run time object editor让人用着很爽, 今天搜到了一个for ...

  7. WPF中实例化Com组件,调用组件的方法时报System.Windows.Forms.AxHost+InvalidActiveXStateException的异常

    WPF中实例化Com组件,调用组件的方法时报System.Windows.Forms.AxHost+InvalidActiveXStateException的异常 在wpf中封装Com组件时,调用组件 ...

  8. DotNetBar for Windows Forms 12.9.0.0_冰河之刃重打包版及制作Visual Studio C#项目模板文件详解

    关于 DotNetBar for Windows Forms 12.9.0.0_冰河之刃重打包版 --------------------11.8.0.8_冰河之刃重打包版-------------- ...

  9. DotNetBar for Windows Forms 12.7.0.10_冰河之刃重打包版原创发布-带官方示例程序版

    关于 DotNetBar for Windows Forms 12.7.0.10_冰河之刃重打包版 --------------------11.8.0.8_冰河之刃重打包版------------- ...

随机推荐

  1. php数组序列化serialize与unserialize

    $arr=array('1','2','3');echo serialize($arr); //序列化 a:3:{i:0;s:1:"1";i:1;s:1:"2" ...

  2. bootstrap组件学习

    转自http://v3.bootcss.com/components/ bootstrap组件学习 矢量图标的用法<span class="glyphicon glyphicon-se ...

  3. Thinking in Java--笔记(2)

    Everything Is an Object You manipulate objects with references Each programming language has its own ...

  4. OpenERP/Odoo命令行参数

    http://blog.sina.com.cn/s/blog_7cb52fa80102v8h1.html

  5. 修改pip源

    http://www.cnblogs.com/hushaojun/p/4606986.html mkdir -p ~/.pip/ vi ~/.pip/pip.conf [global] trusted ...

  6. java调用 webservices接口实现天气预报

    最近要用到web services,而这两天也比较有空,就弄了一个获取天气预报的Util.以前以为这有多难,因为数据来源是个困难.现在用web services的技术,发现下面这个是相当不错的.下面就 ...

  7. CSS典型案例实践

    CSS案例实践 一.层布局:定位元素重叠 在CSS中可以通过z-index属性来确定定位元素的层叠等级.需要注意的是: z-index属性只有在元素的position属性取值为relative.abs ...

  8. Trace-跟踪高消耗的语句需添加哪些事件

    通常接手一台数据库服务器后,我们会开启Profiler跟踪来了解SQL Server的繁忙情况.我们首先会想到的是监控CPU或Duration超过某一阈值的语句/过程.那么所创建的Trace添加哪些事 ...

  9. html+css+javascript实现列表循环滚动示例代码

    使用html+css+javascript实现列表循环滚动,设置时间定时,在规定的时间内替换前一个节点的内容,具体示例如下,感兴趣的朋友可以参考下 说明:设置时间定时,在规定的时间内替换前一个节点的内 ...

  10. 【转】PHP 位运算应用口诀

    位运算应用口诀 清零取位要用与,某位置一可用或 若要取反和交换,轻轻松松用异或 移位运算 要点 1 它们都是双目运算符,两个运算分量都是整形,结果也是整形. 2 "<<" ...