I have a layout like this:
Widget (Vertical)
-Box (Horizontal)
--Some Group Boxes (Vertical/Grid)
---labels, radio, edits
-Box (Horizontal)
Widget (Vertical)
-Box (Horizontal)
--Some Group Boxes (Vertical/Grid)
---labels, radio, edits
-Box (Horizontal)
-QTableWidget
To copy to clipboard, switch view to plain text mode
I want all the items in the group boxes to the be top-aligned. The most obvious solution is to add a spacer at the bottom of each of them, but this increases the size of the group boxes. The QTableWidget is supposed to take all available extra space, and the other items the minimum available space.
Is there any combination of flags/spacers/layouts I can use to get the items in the group boxes top-aligned without increase the size of those boxes?
Bookmarks