我想在此处创建自定义布局:http://doc.qt.io/qt-5/qtwidgets-layouts-flowlayout-flowlayout-cpp.html
我想要一些方法将复选框放在自定义按钮的顶部。现在有
setGeometry(QRect(QPoint(...
按钮和复选框的方法,但无论我是按钮还是按钮首先按钮复选框都出现在按钮下方,我看不到/点击它。
如何在按钮顶部放置复选框?
答案 0 :(得分:1)
我刚刚制作了这个代码片段来检查按钮顶部的复选框,它对我有用。
#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();
}
答案 1 :(得分:1)
只需将复选框设为按钮的子项,然后相对于按钮调用setGeometry。孩子总是被父母吸引。
QPushButton button("Hello World!", &w);
button.setGeometry(0,0,100,100);
button.show();
QCheckBox checkBox(&button);
checkBox.setGeometry(button.rect());
checkBox.show();
无需将复选框放入布局中。