《Qt5+报错”Could not parse stylesheet of object 0x14e70758″》

  • Post author:
  • Post category:其他


出现问题

报错代码:

ui->labelExperStatus->setStyleSheet("{color: black;font: 9pt 微软雅黑;}");


“Could not parse stylesheet of object 0x14e70758”

意思是:不能解析对象0x14e70758处的样式表

问题原因

使用样式表美化Qt控件时,语法错误,缺少控件类名

解决方法

ui->labelExperStatus->setStyleSheet("{color: black;font: 9pt 微软雅黑;}");

修改为:

ui->labelExperStatus->setStyleSheet("QLabel{color: black;font: 9pt 微软雅黑;}");



版权声明:本文为mars_xiaolei原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。