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.
是否有可能QTableWidgetItem在单个单元格中具有不同的字体大小。
QTableWidgetItem
我会有一个带有多行文本的单元格
twi = new QTableWidgetItem(); twi->setText("title \nAck \nTime");
给出一些看起来像的东西
标题 确认 时间
但我想要的是
有可能吗?
谢谢
使用twi->setData(Qt::FontRole, QFont("", new_size));.
twi->setData(Qt::FontRole, QFont("", new_size));