1 Star 0 Fork 0

王泓/qt_hello_world

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mainwindow.cpp 573 Bytes
一键复制 编辑 原始数据 按行查看 历史
王泓 提交于 2024-08-23 16:09 . init code
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow)
{
ui->setupUi(this);
connect(ui->pushButton_show, SIGNAL(clicked()), this, SLOT(on_pushButton_show_clicked()));
connect(ui->pushButton_clear, SIGNAL(clicked()), this, SLOT(on_pushButton_clear_clicked()));
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_pushButton_show_clicked()
{
ui->label->setText("Hello World!");
}
void MainWindow::on_pushButton_clear_clicked()
{
ui->label->clear();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/kuletco/qt_hello_world.git
git@gitee.com:kuletco/qt_hello_world.git
kuletco
qt_hello_world
qt_hello_world
master

搜索帮助