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.
我正在检查libqxt(Qt 的扩展库)并且无法更改 QxTLabel 的文本颜色;它快把我逼疯了。
QxTLabel 扩展了 QFrame。QFrame 对文本一无所知。我尝试通过表单编辑器更改调色板,但这似乎也没有做任何事情。
我也尝试更改样式表,但同样,QFrame 不知道文本,QxTLabel 也没有放弃任何东西。
QxTLabel的完整成员列表中也没有什么能引起我的注意。想法?
嗯,这比我预期的更难找到,但我最终得到了它:
ui.myQxTLabel->setStyleSheet( "QFrame { color: white }" );
以前,我试图设置foreground-color。