doLayout:如何在另一个小部件之上设置几何?

doLayout: how to setGeometry on top of another widget?

我想在这里创建类似的自定义布局:http://doc.qt.io/qt-5/qtwidgets-layouts-flowlayout-flowlayout-cpp.html

我想要一些方法将复选框放在自定义按钮的顶部。目前有

setGeometry(QRect(QPoint(...

按钮和复选框的方法,但无论我是先为按钮还是复选框做这件事,复选框都会出现 "under" 按钮,但我不能 see/click 它。

如何将复选框放在按钮的顶部?

我刚刚制作了这段代码来检查按钮顶部的复选框,它对我有用。

#include "mainwindow.h"
#include <QApplication>
#include <QPushButton>
#include <QCheckBox>

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


    QWidget w;

    QPushButton button("Hello World!", &w);
    button.setGeometry(0,0,100,100);
    button.show();

    QCheckBox checkBox(&w);
    checkBox.setGeometry(30,30,50,50);
    checkBox.show();

    w.show();
    return a.exec();
}

如果您要更改 "parenting" 的顺序并希望复选框仍位于顶部:

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

    QWidget w;

QCheckBox checkBox(&w);
checkBox.setGeometry(30,30,50,50);
checkBox.show();

QPushButton button("Hello World!", &w);
button.setGeometry(0,0,100,100);
button.show();

checkBox.setParent(NULL);
checkBox.setParent(&w);

w.show();
return a.exec();

}

只需将复选框设置为按钮的 child 并调用与按钮相关的 setGeometry。 Children 总是绘制在 parents 之上。

QPushButton button("Hello World!", &w);
button.setGeometry(0,0,100,100);
button.show();

QCheckBox checkBox(&button);
checkBox.setGeometry(button.rect());
checkBox.show();

无需将复选框放入布局中。