Hi,
Which method should I use to call the next page in a stackedwidget.
Whenever the user clicked the pushbutton the widget shoud show the next page.
how can I accomplish this ?
Hi,
Which method should I use to call the next page in a stackedwidget.
Whenever the user clicked the pushbutton the widget shoud show the next page.
how can I accomplish this ?
Qt Code:
int nextIndex = stackWidget->currentIndex() + 1; if( nextIndex < stackWidget->count()) stackWidget->setCurrentIndex(nextIndex);To copy to clipboard, switch view to plain text mode
But there is no direct slot to call nextWidget or something like that![]()
npc (10th January 2007)
Bookmarks