Qt remove margins
问题 I am currently using a QMainWindow widget and I would like to remove margins around the widget inside. I success to remove margins for window borders but not for the widgets inside my window. Here is my code, for example : this->mainWidget = new QWidget(this); this->mainLayout = new QHBoxLayout; QLabel *foo = new QLabel("foo", this); QLabel *bar = new QLabel("bar", this); mainLayout->setContentsMargins(0, 0, 0, 0); // Remove margins for window borders this->setWindowFlags(Qt: