Refactor custom wizard to reduce flicker
Posted
by
Matthew Brown
on Stack Overflow
See other posts from Stack Overflow
or by Matthew Brown
Published on 2010-08-06T20:48:25Z
Indexed on
2010/12/22
4:54 UTC
Read the original article
Hit count: 273
I have implemented a custom wizard control in C# windows forms by creating a base form which has the shared components and then making child forms for each step of the process. I then have a class which hides/shows the child forms when you move from one step to another. The problem is that flickering is bad when moving between forms. Does anyone know a way to either keep this method and reduce the flicker or refactor it to make it use a single form (which should definitely reduce the flicker)?
© Stack Overflow or respective owner