获取QLabel的矩形宽度

Get QLabel's rectangle width

我有以下代码:

QLabel *la = new QLabel(ui->lineEdit->text());
la->setStyleSheet("background-color : #4682b4; color: white; font-size: 25px; padding: 8%;");
int w = la->fontMetrics().boundingRect(la->text()).width();

问题是我无法设置 QLabel 的正确宽度。 w 未考虑使用 setStyleSheet() 所做的更改。我需要获取文本所在矩形的宽度。我该怎么做?

尺寸更新于paintEvent,您可以使用零计时器获得尺寸。

la->setStyleSheet("background-color : #4682b4; color: white; font-size: 25px; padding: 8%;");
QTimer::singleShot(0,[=](){
    int w = la->fontMetrics().boundingRect(la->text()).width();
});

或者您可以调用 qApp->processEvents(); 手动旋转事件循环。

la->setStyleSheet("background-color : #4682b4; color: white; font-size: 25px; padding: 8%;");
qApp->processEvents();
int w = la->fontMetrics().boundingRect(la->text()).width();