setinfowidget.cpp 392 B

12345678910111213141516171819202122232425
  1. #include "setinfowidget.h"
  2. #include "ui_setinfowidget.h"
  3. #include "UIStyleManager.h"
  4. SetInfoWidget::SetInfoWidget(QWidget *parent) :
  5. QWidget(parent),
  6. ui(new Ui::SetInfoWidget)
  7. {
  8. ui->setupUi(this);
  9. /* 设置样式表 */
  10. UIStyle.registerWidget(this);
  11. }
  12. SetInfoWidget::~SetInfoWidget()
  13. {
  14. /* 注销样式表 */
  15. UIStyle.unregisterWidget(this);
  16. delete ui;
  17. }