473,498 Members | 1,648 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

double buffering a windows form

I have read plenty about applying double buffering for animation and self
drawn forms. Is there a way to apply it to a form with many standard
controls on it (textboxes, labels etc) ?? I have tried using
myForm.SetStyles(ControlStyles.DoubleBuffer, True) however it has made no
impact on the drawing operation. Any clarification would be greatly
appreciated

-Alex
Jul 21 '05 #1
3 2948
http://www.bobpowell.net/doublebuffer.htm

Double buffering will only affect the Form.OnPaint method, which you
will have to override if you use the techniques described in the link
above. The controls on your form all have their own OnPaint methods,
which have nothing to do with the form's double buffering. You would
have to implement double buffering on each individual control...

Jul 21 '05 #2
I tried implementing double buffering on a single control without success.
Any idea what im missing here? The datagrid no longer paints at all, its
just a black box.

The form event
Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs)
If m_buffer Is Nothing Then
m_buffer = New Bitmap(Me.ClientSize.Width, Me.ClientSize.Height)
dg.Buffer = m_buffer
End If

Dim g As Graphics = Graphics.FromImage(m_buffer)
g.Clear(SystemColors.Control)
g.Dispose()

'Copy the back buffer to the screen

e.Graphics.DrawImageUnscaled(m_buffer, 0, 0)
End Sub

Protected Overrides Sub OnPaintBackground(ByVal pevent As
PaintEventArgs)
'Don't allow the background to paint
End Sub

Protected Overrides Sub OnSizeChanged(ByVal e As EventArgs)
If Not (m_buffer Is Nothing) Then
m_buffer.Dispose()
m_buffer = Nothing
End If

MyBase.OnSizeChanged(e)
End Sub
The derived class
Public Class BufferedDataGrid
Inherits DataGrid

Private m_buffer As Bitmap

Public Property Buffer() As Bitmap
Get
Return m_buffer
End Get
Set(ByVal Value As Bitmap)
m_buffer = Value
End Set
End Property

Public Sub New()
SetStyle(ControlStyles.AllPaintingInWmPaint Or
ControlStyles.UserPaint Or ControlStyles.DoubleBuffer, True)
End Sub

Protected Overrides Sub OnPaint(ByVal pe As
System.Windows.Forms.PaintEventArgs)
If m_buffer Is Nothing Then Return
Dim peArgs As New PaintEventArgs(Graphics.FromImage(m_buffer),
pe.ClipRectangle)
MyBase.OnPaint(peArgs)
End Sub

End Class

"Jamin Guy" <ja******@gmail.com> wrote in message
news:11*********************@g14g2000cwa.googlegro ups.com...
http://www.bobpowell.net/doublebuffer.htm

Double buffering will only affect the Form.OnPaint method, which you
will have to override if you use the techniques described in the link
above. The controls on your form all have their own OnPaint methods,
which have nothing to do with the form's double buffering. You would
have to implement double buffering on each individual control...

Jul 21 '05 #3
I'm not sure if you can make a custom drawn DataGrid, but here is an
example of a custom StatusBar that I double-buffered.

public class StatusBarEx : StatusBar
{
private int xBuffer = 4, yBuffer = 4;

public StatusBarEx()
{
InitializeComponent();

//
// TODO: Add constructor logic here
//

this.SetStyle(ControlStyles.DoubleBuffer |ControlStyles.UserPaint |
ControlStyles.AllPaintingInWmPaint |
ControlStyles.ResizeRedraw, true);
}

protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint (e);
Rectangle drawingRect = new Rectangle(new Point(xBuffer, yBuffer),
new Size(this.ClientRectangle.Width - xBuffer,
this.ClientRectangle.Height - yBuffer));
e.Graphics.DrawString(this.Text, this.Font, new
SolidBrush(Color.DimGray), drawingRect);
}

private void InitializeComponent()
{
//
// StatusBarEx
//
this.Font = new System.Drawing.Font("Arial", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point,
((System.Byte)(0)));

}

protected override void OnTextChanged(EventArgs e)
{
base.OnTextChanged (e);

this.Refresh();
}

Jul 21 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3441
by: Jason | last post by:
I have created a 2d isometric game map using tiles and now I'm trying to move around my map..when i go near the edge of the map I want to redraw the map to show new parts of the map however the...
1
3086
by: Kuba Florczyk | last post by:
Hi I've got some problem doing double buffer. Here is my problem: I've got custom control on which i paint some data (chat messages, lets call it ChatControl), this control is puted on a...
2
28732
by: Millennium Falcon | last post by:
Hi! In my application, I have a panel in the middle of the form, which I'll be using as a drawing panel. I would like to update the drawing panel each time when it is required, without updating...
2
5589
by: Dan Neely | last post by:
My dialog has groupboxes with slow to redraw controls, to improve the appearance I want to doublebuffer it. While I can use SetStyle() in the Dailogs constructor the setting change doesn't get...
0
1362
by: Brian Henry | last post by:
I am trying to do a owner drawn list view in detail mode, when i inherited the list view into a new custom control then turned on double buffering all the sudden the selection rectangle is the...
3
280
by: Alex Glass | last post by:
I have read plenty about applying double buffering for animation and self drawn forms. Is there a way to apply it to a form with many standard controls on it (textboxes, labels etc) ?? I have...
7
6492
by: Rain | last post by:
Hello Gurus! I really need this one to finish a module in my thesis. PLease please help me. I need a double buffer class so i can call it and use it anytime i want, the problem is everything ive...
1
1815
by: TyBreaker | last post by:
I notice in VB 2005 that I can set a form to be double-buffered just by setting that option to true in the Form properties. I have a panel on that form but there doesn't appear to be a...
3
5933
by: ssoffline | last post by:
hi i have an app in which i can drop objects onto a form and move them, it consists of graphics (lines), i am using double buffering to avoid filckering in the parent control which is a panel,but...
0
7126
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7005
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7168
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7210
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
5465
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4595
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3087
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
659
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
293
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.