5 Star 12 Fork 3

curriculum-design / 快递驿站系统GUI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
text.cpp 481 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include "text.h"
#include "ui_text.h"
text::text(QWidget *parent) :
QWidget(parent),
ui(new Ui::text)
{
ui->setupUi(this);
ui->textEdit->setReadOnly(true);
this->setWindowTitle("快递驿站系统");
}
void text::show(QString txt)
{
ui->textEdit->setText(txt);
this->QWidget::show();
}
text::~text()
{
delete ui;
}
void text::on_pushButton_clicked()
{
this->close();
}
void text::on_pay_clicked()
{
this->close();
emit showpay();
}
C++
1
https://gitee.com/curriculum-design/express_station_system_gui.git
git@gitee.com:curriculum-design/express_station_system_gui.git
curriculum-design
express_station_system_gui
快递驿站系统GUI
master

搜索帮助