views:

106

answers:

2

This very strange.

When I resize a WinForms dialog the controls are flickering very bad, some of them are disappearing. It happens only when using the application under Windows 7 64.

+1  A: 

Double buffering is disabled in Windows Forms by default, and unfortunately you get this flickering issue as a result. It's a pain, but that's the way that it is. You may want to read the following, or provide some more information about your situation if these do not solve the problem.

Rich
+1  A: 

The solution for my problem is listed here:

http://blogs.msdn.com/b/alejacma/archive/2008/11/20/controls-won-t-get-resized-once-the-nesting-hierarchy-of-windows-exceeds-a-certain-depth-x64.aspx

Cornel
Nice background info! - pretty interesting solution involving `BeginInvoke()`.
snemarch