vote up 0 vote down star

I designed a QMainWindow with QtCreator's designer. It consists of the default central widget (a QWidget) which contains a QVBoxLayout with all the other widgets in it. Now everything I want, is that the QVBoxLayout automatically occupies the whole central widgets rectangle space.

How can I do this? I didn't find any usable property neither in the central widgets properties nor the QVBoxLayout's ones.

flag

2 Answers

vote up 2 vote down check

You don't have to create a QVBoxLayout manually. Just select your central QWidget and press a make-layout button.

alt text

link|flag
Very nice, that's what I was after. Thanks! – milan1612 Oct 2 at 11:27
vote up 1 vote down

Add at least one widget on your MainWindow. Then select your window by clicking on it and click on the VerticalLayout Button at the top of QTCreator. You Vertical Layout is automatically added to the central widget and fills all the surface.

link|flag
More or less the same as gs's answer, but thanks! – milan1612 Oct 2 at 11:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.