C:\Users\Administrator\Desktop\github_downlo\QtWidgets-master\myHelper.h:18: error: no member named 'setStyleSheet' in 'QGuiApplication'
时间: 2023-09-07 14:11:55 浏览: 88
这个错误提示是因为在myHelper.h的第18行中调用了QGuiApplication的setStyleSheet函数,但QGuiApplication类并没有该函数,导致编译错误。
setStyleSheet是QWidget类的成员函数,用于设置控件的样式表。因此,如果想要使用setStyleSheet函数,需要继承自QWidget类的对象,或者使用QWidget类的子类,例如QMainWindow、QDialog等。
如果你想要在QGuiApplication类中使用样式表,可以考虑使用QQuickStyle类来设置应用程序的样式。
阅读全文