Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 qss 增加/减少字体大小?
font-size 属性的Qt 样式表参考说:
在这个版本的 Qt 中,仅支持 pt 和 px 度量。
所以这似乎仍然不可能。
好吧,您可以尝试通过代码缩放值,然后插入回样式表。
//nFontSize and nSomeFactor are your base font size and factor widgetYouWantToSetFontSizeFor->setStyleSheet("font-size: "+QString::number(scaleUsingSomeFactor(nFontSize, nSomeFactor))+"pt;");
虽然,我不确定你在找什么。