I am using Qt designer and I know how to use a QVBoxLayout and QGroupBox but it seems there is no such thing as a QGroupVBoxLayout. So I have to put a QVBoxLayout inside of a QGroupBox but if I modify the dimensions of one I have to do the same to the other. Is there a way to make them change dimensions together directly from QT designer?
+3
A:
- Add a
QGroupBox
to the form - Add widgets to the
QGroupBox
at positions where you would expected to be when the layout is applied (it doesn't have to be precise) - Select the
QGroupBox
and click the "Lay Out Vertically" toolbar button (the one with three blue vertical bars)
Lukáš Lalinský
2009-10-17 06:20:07