PDA

View Full Version : Creating pages



hgedek
19th July 2007, 15:08
I need creating pages like QWizard examples in QT docs.
But:
-how I orginize the buttons?
-I need putting menu to bottom?

So is there another way for creating pages in QT or only QWizard will be used?

marcel
19th July 2007, 15:11
Of course there is.
Use a QStackedWidget for the pages(next & back jsut switch to the next/prev page in the widget).
Also, at the bottom you can add whatever buttons and menus you like. It is just a matter of layout.

Regards