我开始使用QT,并且遇到了这样的问题。
我需要将QCombobox
的某个字段(行)的字体设置为斜体。
有没有办法做到这一点?
谢谢。
答案 0 :(得分:4)
示例:
newFont=QFont("FontFamily",italic=True)
myComboBox.setItemData(0, newFont, Qt::FontRole) // Where 0 is your index. Compute as necessary
另请查看this thread,其中讨论了类似于粗体的内容。