12345678910111213141516171819202122232425 |
- #include "SystemInfoPage.h"
- #include "ui_SystemInfoPage.h"
- #include "PageWnd/AccountMaintenanceWnd.h"
- #include "PageWnd/LanguageSwitchWnd.h"
- SystemInfoPage::SystemInfoPage(QWidget *parent)
- : QMainWindow(parent)
- , ui(new Ui::SystemInfoPage)
- {
- ui->setupUi(this);
- InitWnd();
- }
- SystemInfoPage::~SystemInfoPage()
- {
- delete ui;
- }
- void SystemInfoPage::InitWnd()
- {
- ui->tabUi->addTab(new LanguageSwitchWnd(), tr("Language Switch", "语言切换"));
- ui->tabUi->addTab(new AccountMaintenanceWnd(), tr("Account Maintenance", "账户维护"));
- }
|