doLayout:如何在另一个小部件上设置Geometry

doLayout: how to setGeometry on top of another widget?

本文关键字:设置 Geometry 小部 另一个 doLayout      更新时间:2023-10-16

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

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

setGeometry(QRect(QPoint(...

按钮和复选框的方法,但无论我是为按钮还是checkobox先做,复选框都会出现在按钮下面,我看不到/点击它。

我怎样才能把复选框放在按钮的顶部?

只需将复选框设为按钮的子项,并相对于按钮调用setGeometry。孩子们总是被吸引到父母的前面。

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

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

我刚刚制作了这个片段来检查按钮顶部的复选框,它对我有效。

#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();
}

如果你想改变"养育子女"的顺序,并希望复选框仍然在顶部:

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();

}