我有QGroupBox
。根据上下文,它的标题可能是redundent(显示在GUI的另一个地方),所以我需要做出好像QGroupBox
不在这里....但我必须保留它& #39;内容可见(所以我不想打电话给QGroupBox::hide()
)!
我需要在运行时动态执行此操作,并且希望避免创建/销毁QGroupBox
+重新定位它的内容....必须有一种更简单的方法来执行此操作。
到目前为止我尝试了什么:
QGroupBox
可见:
QGroupBox::setTitle("")
删除文字。 QGroupBox::setFlat(true)
使框架成为一条线。我最终得到了这个:
还不错......但一条线仍然存在......有没有办法完全隐藏QGroupBox
框架但保留其内容可见?
答案 0 :(得分:2)
您可以从QGroupBox
派生自己的群组框,然后重新实施paintEvent()
方法。应该很简单。原始QGroupBox::paintEvent()
如下所示:
void QGroupBox::paintEvent(QPaintEvent *)
{
QStylePainter paint(this);
QStyleOptionGroupBox option;
initStyleOption(&option);
paint.drawComplexControl(QStyle::CC_GroupBox, option);
}
您需要做的只是在绘制小部件之前修改样式选项:
void CMyGroupBox::paintEvent(QPaintEvent *)
{
QStylePainter paint(this);
QStyleOptionGroupBox option;
initStyleOption(&option);
// This should disable frame painting.
option.features = QStyleOptionFrame::None;
paint.drawComplexControl(QStyle::CC_GroupBox, option);
}
答案 1 :(得分:2)
您可以使用QFrame
+ QGridLayout
(或一些更复杂的布局组合)+ QSS而不是QGroupBox
。
仅考虑QGroupBox
,通过QSS的简单解决方案可能是:
static const char kSavedTitle[] = "_savedTitle";
void hideBoxFrame(QGroupBox * box) {
box->setProperty(kSavedTitle, box->title());
box->setTitle(QString());
box->setStyleSheet("border:none");
}
void showBoxFrame(QGroupBox * box) {
box->setTitle(box->property(kSavedTitle).toString());
box->setStyleSheet(QString());
}
答案 2 :(得分:2)
这是一个通过交换小部件并重新创建子级来实现它的示例。它适用于任何具有直接子项的窗口小部件,而不仅仅是QGroupBox
。它需要特殊的案例处理小部件,例如QScrollArea
和QMainWindow
,它们将子项包装在一个特殊的子窗口小部件中。
有关以编程方式宣传小部件的相关讨论,请参阅this question。
// https://github.com/KubaO/stackoverflown/tree/master/questions/group-reparent-36603051
#include <QtWidgets>
/// Replaces the visible widget with a hidden widget, preserving the layout of the
/// children, and making the new widget visible.
void swapWidgets(QWidget * a, QWidget * b)
{
auto src = a->isVisible() ? a : b;
auto dst = a->isVisible() ? b : a;
Q_ASSERT(dst->isHidden());
/// Move the children to the destination
dst->setLayout(src->layout());
/// Replace source with destination in the parent
auto layout = src->parentWidget()->layout();
delete layout->replaceWidget(src, dst);
/// Unparent the source, otherwise it won't be reinsertable into the parent.
src->setParent(nullptr);
/// Only the destination should be seen.
src->hide();
dst->show();
}
int main(int argc, char ** argv) {
QApplication app{argc, argv};
QWidget w;
QGridLayout wLayout{&w};
QPushButton swapBtn{"Swap"};
wLayout.addWidget(&swapBtn);
QWidget noBox;
QGroupBox box{"Group"};
wLayout.addWidget(&box);
QGridLayout boxLayout{&box};
for (int i = 0; i < 16; ++i)
boxLayout.addWidget(new QLabel(QString("Tr%1").arg(i)), i/8, i%8);
swapBtn.connect(&swapBtn, &QPushButton::clicked, [&] { swapWidgets(&box, &noBox); });
w.show();
return app.exec();
}
答案 3 :(得分:2)
我的选择:
QGroupBox theBox;
theBox.setFlat(true);
theBox.setStyleSheet("border:0;");
答案 4 :(得分:0)
是的,你可以尝试另外一种选择。
你可以变身为QFrame,这将保持行为但是使容器无边界
您只需右键单击QDesigner中的“组框”,然后选择“变形为”选项以从中选择