12345678910111213141516171819202122232425 |
- #include "setinfowidget.h"
- #include "ui_setinfowidget.h"
- #include "UIStyleManager.h"
- SetInfoWidget::SetInfoWidget(QWidget *parent) :
- QWidget(parent),
- ui(new Ui::SetInfoWidget)
- {
- ui->setupUi(this);
- /* 设置样式表 */
- UIStyle.registerWidget(this);
- }
- SetInfoWidget::~SetInfoWidget()
- {
- /* 注销样式表 */
- UIStyle.unregisterWidget(this);
- delete ui;
- }
|