我有一个带有一些文本的复选框,在这个复选框下面有一个标签。如何对齐此标签,使其与复选框上的文本对齐。
我想要什么:
[ ] insert_text
some_text
我所拥有的:
[ ] insert_text
some_text
一个可能的解决方案是在QLabel的左侧添加一个合适宽度的填充,以计算宽度。我已经创建了一个自定义的QCheckBox,它返回指示器的宽度,但到这个数量时,您必须添加几个表示指示器和文本之间空间的像素:
#include <QtWidgets>
class CheckBox: public QCheckBox{
public:
using QCheckBox::QCheckBox;
int width_of_indicator(){
QStyleOptionButton opt;
initStyleOption(&opt);
return style()->subElementRect(QStyle::SE_CheckBoxIndicator, &opt,this).width();
}
};
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QWidget w;
auto ch = new CheckBox("insert_text");
auto label = new QLabel("some_text: Stack Overflow");
label->setStyleSheet(QString("padding-left: %1px").arg(ch->width_of_indicator()+2));
auto lay = new QVBoxLayout(&w);
lay->addWidget(ch);
lay->addWidget(label);
w.show();
return a.exec();
}