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.
我有一个“QGraphicsScene”场景并正在尝试使用
addText(const QString &text, const QFont &font = QFont())
在场景中添加一些文本。有效。但是,我尝试更改文本颜色,但找不到设置“QFont”颜色的方法。我没有找到 'font.setColor' 类型的方法。
有什么建议吗?
在 Qt 中,颜色不是 QFont 的一部分。您是否尝试过 addText()->setDefaultTextColor()?