繁体   English   中英

Qt删除保证金

[英]Qt remove margins

我目前正在使用QMainWindow小部件,我想删除小部件内的边距。 我成功删除了窗口边框的边距,但没有删除窗口中的窗口小部件。

这是我的代码,例如:

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::FramelessWindowHint);

foo->setStyleSheet("background-color: green");
bar->setStyleSheet("background-color: red");
foo->setContentsMargins(0, 0, 0, 0); // Has no effect
bar->setContentsMargins(0, 0, 0, 0); // Has no effect

this->mainLayout->addWidget(foo);
this->mainLayout->addWidget(bar);

this->mainWidget->setLayout(mainLayout);
this->setCentralWidget(mainWidget);

以下是它呈现的内容:

窗口渲染

我想删除两个小部件之间的白色部分。

你知道如何制作这类东西吗?

谢谢。

您只需将框布局的间距属性设置为零:

 this->mainLayout->setSpacing(0);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM