[SOLVED] How to move QGroupBox tittle to bottom side?
-
Hi, welcome to devnet.
You can do that with stylesheets, e.g.
setStyleSheet("QGroupBox::title { subcontrol-position: bottom left; }");
Then you can adjust the position exactly using
left
,bottom
andpadding
.But think hard if you really want to do that. It's like a book title placed on the back cover.