Hi all,
I have made a template to create a form in wizard style, which has a next and back button.
When the user click next button, the panel (TableLayoutPanel) should display the next page.
This is the nested panel structure.
Form --- parent panel ---- page panel(display individual page)+ button panel (next, back and cancel button)
Currently, I implement it by recreating the parent panel and clear the controls of the form and re-add the panel to the form, this is very slow (very noticable) and the screen also flicker, is there another way to handle this?
Itried double-buffer, no change.
I tried changing the page panel only, this causes the controls layout to be messed up. i.e. the button panel covering the page panel, weird.
I tried to suspend and resume layout of the Form, still flicker.
Regards,
Max