3 Star 0 Fork 0

牟俊芳/shujikuduan

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mainshow.cpp 853 Bytes
一键复制 编辑 原始数据 按行查看 历史
牟俊芳 提交于 2024-08-28 07:43 . 1
#include "mainshow.h"
#include "ui_mainshow.h"
MainShow::MainShow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainShow)
{
ui->setupUi(this);
}
MainShow::~MainShow()
{
delete ui;
}
void MainShow::on_pushButton_clicked()
{
this->close();
ShowAandP *showa = new ShowAandP;
showa->setAttribute(Qt::WA_DeleteOnClose);
showa->show();
}
void MainShow::on_pushButton_2_clicked()
{
this->close();
ShowDiagnosis *sd = new ShowDiagnosis;
sd->setAttribute(Qt::WA_DeleteOnClose);
sd->show();
}
void MainShow::on_pushButton_3_clicked()
{
this->close();
Chat *sc = new Chat;
sc->setAttribute(Qt::WA_DeleteOnClose);
sc->show();
}
void MainShow::on_pushButton_4_clicked()
{
this->close();
Graph *tp = new Graph;
tp->setAttribute(Qt::WA_DeleteOnClose);
tp->show();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mou-junfang/shujikuduan.git
[email protected]:mou-junfang/shujikuduan.git
mou-junfang
shujikuduan
shujikuduan
master

搜索帮助