1 Star 0 Fork 15

zhhe/qt_2019_ncov

forked from whik/qt_2019_ncov 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
about.cpp 621 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include "about.h"
#include "ui_about.h"
//#include "windows.h"
#include <QDesktopServices>
about::about(QWidget *parent) :
QDialog(parent),
ui(new Ui::about)
{
ui->setupUi(this);
this->setWindowTitle("关于");
ui->tb_about->setOpenLinks(false);
connect(ui->tb_about, SIGNAL(anchorClicked(const QUrl&)), this, SLOT(anchorClickedSlot(const QUrl&)));
}
about::~about()
{
delete ui;
}
void about::anchorClickedSlot(const QUrl& url)
{
QDesktopServices::openUrl(url);
// ShellExecuteA(NULL, "open", url.toString().toStdString().c_str(), "", "", SW_SHOW);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhhe14/qt_2019_ncov.git
[email protected]:zhhe14/qt_2019_ncov.git
zhhe14
qt_2019_ncov
qt_2019_ncov
master

搜索帮助