#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();
|
}
|