Account Table form

This commit is contained in:
Krad
2021-12-08 15:10:56 +08:00
parent f00501f680
commit a65d293fb2
5 changed files with 117 additions and 2 deletions

View File

@@ -15,6 +15,7 @@
#include "generalform.h"
#include <QPushButton>
#include "systemsettingform.h"
#include "AccountTableForm.h"
AdminSettingForm::AdminSettingForm(QWidget* parent, Qt::WindowFlags f) : TabFormWidget(parent) {
@@ -42,8 +43,8 @@ AdminSettingForm::AdminSettingForm(QWidget* parent, Qt::WindowFlags f) : TabForm
GeneralForm* generalForm = new GeneralForm(this);
stackedWidget->addWidget(generalForm);
QLabel* acc = new QLabel(this);
acc->setText("Account Manage");
AccountTableForm* acc = new AccountTableForm(this);
stackedWidget->addWidget(acc);
systemSettingForm* systemSetting = new systemSettingForm(this);