作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含其他布局(子布局)的布局。我需要从布局中删除包含内容的子布局。我该怎么做?
QVBoxLayout* mainLayout = new QVBoxLayout;
QHBoxLayout* subLayout = new QHBoxLayout;
for(int i = 0; i < 3; i++)
subLayout->addWidget(new QPushButton(this)); //some content of sublayout
mainLayout->addLayout(subLayout);
setLayout(mainLayout);
这个类只有QLayout::removeWidget()
,没有QLayout::removeLayout()
。只是删除子布局
或
QLayoutItem *item;
while ((item = subLayout->takeAt(0)))
delete item;
delete subLayout;
也没有正确的效果(内容仍然保留在屏幕上)。
那怎么办?
最佳答案
void QLayout::removeItem(QLayoutItem *item)
Removes the layout item item from the layout. It is the caller's responsibility to delete the item.
Notice that item can be a layout (since QLayout inherits QLayoutItem).
关于c++ - 如何从其他 QLayout 中删除 QLayout?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36250320/
我是一名优秀的程序员,十分优秀!