vote up 1 vote down star

I have an owner-drawn UserControl where I've implemented double-buffering. In order to get double-buffering to work without flicker, I have to override the OnPaintBackground event like so:

protected override void OnPaintBackground(PaintEventArgs e)
{
    // don't even have to do anything else
}

This works great at runtime. The problem is that when I have an instance of the control on a form at design time, it becomes a black hole that shows trails of whatever windows are dragged over it (because the override of the OnPaintBackground event also governs design-time appearance). It's just a cosmetic problem, but it's visually jarring and it always leads new developers on the project to assume something has gone horribly wrong.

Is there any way to have an overridden method like this not be overridden at design time, or is there another solution?

flag

Is there some reason you can't use the built-in double buffering? – Greg D Nov 16 '08 at 2:34
Yes - it doesn't work. If you create a user control with DoubleBuffered = true and then do a bunch of drawing operations on it, you will get flicker. I'm really not sure what that property even does. – MusiGenesis Nov 16 '08 at 2:45

2 Answers

vote up 2 vote down check
if (this.DesignMode)
{
    return;    //or call base.OnPaintBackground()
}
link|flag
vote up 0 vote down

Steven Lowe's solution unfortunately cover all scenarios, espcially when user controls come into the picture.

The this.DesignMode flag is very deceptive. Its only scope is to check if the direct parent is within the designer.

For instance, if you have a Form A, and a UserControl B, in the designer:

  • A.DesignMode is true when viewed in designer
  • B.DesignMode is false when viewing A, but true when looking directly at B in the designer.

The solution to this is a special flag to check (sorry for the ugly C++ code):

 if(this->DesignMode || 
    LicenseManager::UsageMode == LicenseUsageMode::Designtime) 
    return;

This variable will always show the proper design boolean.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.