Scaling QLabel to accommodate the contained text and nothing more

耗尽温柔 提交于 2019-12-04 13:45:05

Yes you can find out the width of the text through the QFontMetrics of the QLabel. For example:

QLabel *label = new QLabel("Text");
int w = label->fontMetrics().width(label->text());
qDebug() << Q_FUNC_INFO << w;
//in my case this results in 24px, so 6px per character.
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!