1

是否可以使用 qss 增加/减少字体大小?

4

2 回答 2

2

font-size 属性的Qt 样式表参考说:

在这个版本的 Qt 中,仅支持 pt 和 px 度量。

所以这似乎仍然不可能。

于 2014-08-20T10:42:17.317 回答
0

好吧,您可以尝试通过代码缩放值,然后插入回样式表。

//nFontSize and nSomeFactor are your base font size and factor
widgetYouWantToSetFontSizeFor->setStyleSheet("font-size: "+QString::number(scaleUsingSomeFactor(nFontSize, nSomeFactor))+"pt;");

虽然,我不确定你在找什么。

于 2017-09-21T10:56:09.873 回答