20

我在 qwidget W 中有一个 qlabel L。L 垂直和水平对齐。当我调整 W 大小时,L 不会居中。

这是预期的吗?什么是让 L 再次居中的好方法?

4

1 回答 1

35

QLabel通过调用QLabel::setAlignment来对齐 a 中的文本就像我预期的那样。
也许您错过了将标签添加到布局(因此,如果您的小部件调整大小,您的标签会自动调整大小)。另请参阅布局管理。一个最小的例子:

#include <QApplication>
#include <QHBoxLayout>
#include <QLabel>
#include <QWidget>

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

    QLabel* label=new QLabel("Hello World!");
    label->setAlignment(Qt::AlignCenter);

    QWidget* widget=new QWidget;

    // create horizontal layout
    QHBoxLayout* layout=new QHBoxLayout;
    // and add label to it
    layout->addWidget(label);
    // set layout to widget
    widget->setLayout(layout);

    widget->show();

    return app.exec();
}
于 2012-03-22T06:01:30.083 回答