Page Layouts
-
I'm trying to set the layout of a QStackedWidget in the ui editor. It allows me to set the layout for the entire QStackedWidget itself, but not for individual pages. When I set the layout, it sets the first created page of the stacked widget to that layout, but none others, preventing me from setting the layout for any further pages. I'd appreciate any articles on how to learn about using layouts in qt community.
Thank you.

-
I'm trying to set the layout of a QStackedWidget in the ui editor. It allows me to set the layout for the entire QStackedWidget itself, but not for individual pages. When I set the layout, it sets the first created page of the stacked widget to that layout, but none others, preventing me from setting the layout for any further pages. I'd appreciate any articles on how to learn about using layouts in qt community.
Thank you.

@crosier011
Select the second page. Add some widget onto it. Now you should be able to set layout on the page widget. -
@crosier011
Select the second page. Add some widget onto it. Now you should be able to set layout on the page widget.@JonB Thank you.