SystemInfoPage.cpp 568 B

12345678910111213141516171819202122232425
  1. #include "SystemInfoPage.h"
  2. #include "ui_SystemInfoPage.h"
  3. #include "PageWnd/AccountMaintenanceWnd.h"
  4. #include "PageWnd/LanguageSwitchWnd.h"
  5. SystemInfoPage::SystemInfoPage(QWidget *parent)
  6. : QMainWindow(parent)
  7. , ui(new Ui::SystemInfoPage)
  8. {
  9. ui->setupUi(this);
  10. InitWnd();
  11. }
  12. SystemInfoPage::~SystemInfoPage()
  13. {
  14. delete ui;
  15. }
  16. void SystemInfoPage::InitWnd()
  17. {
  18. ui->tabUi->addTab(new LanguageSwitchWnd(), tr("Language Switch", "语言切换"));
  19. ui->tabUi->addTab(new AccountMaintenanceWnd(), tr("Account Maintenance", "账户维护"));
  20. }