yry
2025-09-01 d1c7465e0dbd493c65fa0fae89928e47c80c7f15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "userregister_mainwindow.h"
 
#include "ui_userregister_mainwindow.h"
 
UserRegister_MainWindow::UserRegister_MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::UserRegister_MainWindow)
{
    ui->setupUi(this);
}
 
UserRegister_MainWindow::~UserRegister_MainWindow()
{
    delete ui;
}
 
/* 点击按钮·发送信号·展开登录界面 */
void UserRegister_MainWindow::on_GoBackButton_clicked()
{
    emit open_loginUi_signal();
}
 
/* 点击按钮·将输入的注册信息打包 */
void UserRegister_MainWindow::on_RegisterButton_clicked()
{
    emit tar_register_signal();
}