QtExamples/QtCustomStyleEx/ExCustomStyle.h
touwoyimuli 054148433a feat:添加一个自定义风格的类
class:ExCustomStyle的类,但是里面是空白的,为后面更新的控件风格作为一个基准
2019-08-26 21:23:26 +08:00

15 lines
191 B
C++

#ifndef EXCUSTOMSTYLE_H
#define EXCUSTOMSTYLE_H
#include <QCommonStyle>
class ExCustomStyle : public QCommonStyle
{
Q_OBJECT
public:
ExCustomStyle();
};
#endif // EXCUSTOMSTYLE_H