ShowFullScreen on QStackWidget don't work
Hi All,
I am using stackwidget in my application to show other widgets, now showFullScreen() method is not working on stackwidget object. I mean geometry don't change after calling this method.
So can any one guide on implementing showFullScreen() Method.
Ratheendran
Re: ShowFullScreen on QStackWidget don't work
Maybe the showFullScreen() should be called on the current widget of the QStackedWidget ?
something like
Code:
// ... fill it with widgets
pStackedWidget->currentWidget()->showFullScreen() ;
Re: ShowFullScreen on QStackWidget don't work
Hi,
Tried the code above, it didn't work.
Can you suggest any other alternative.
Ratheendran