gpt4 book ai didi

c++ - 如何调整 QVBoxLayout 的大小以填充没有空格的表单?

转载 作者:太空宇宙 更新时间:2023-11-04 16:30:50 25 4
gpt4 key购买 nike

如何调整 QVBoxLayout 的大小以填充没有空格的表单?

有空间: http://0000.2.img98.net/out.php/i25106_with-space.png

没有空格: http://0000.2.img98.net/out.php/i25107_without-space.png

最佳答案

你必须为布局设置边距

例子:

int main(int argc, char *argv[])
{
QApplication app(argc, argv);

QVBoxLayout* l = new QVBoxLayout();
l->setMargin(0); ///m

QWidget w; w.setFixedSize(300,300);
w.setLayout(l);
l->addWidget(new QPushButton("fd"));
w.show();

return app.exec();
}

关于c++ - 如何调整 QVBoxLayout 的大小以填充没有空格的表单?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7205380/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com