1 Star 0 Fork 21

欢欢/GAS

forked from clickto/GAS 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
frmabout.cpp 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
zhao 提交于 2017-03-04 12:30 . 创建版本库 2017-03-04 12:29
#if _MSC_VER >= 1600
#pragma execution_character_set("utf-8")
#endif
#include "frmabout.h"
#include "ui_frmabout.h"
#include "api/myhelper.h"
frmAbout::frmAbout(QWidget *parent) :
QDialog(parent),
ui(new Ui::frmAbout)
{
ui->setupUi(this);
this->InitForm();
myHelper::FormInCenter(this);
}
frmAbout::~frmAbout()
{
delete ui;
}
void frmAbout::InitForm()
{
ui->labTitle->setText(App::Title);
ui->lab_Title->setText(QString("关于%1").arg(App::Title));
ui->labVesion->setText(QString("版本 : %1").arg(App::Version));
ui->labHttp->setText("<style> a{text-decoration:none;color:white;} </style>"
"<a href=www.ecan-system.com>网址 : http://www.ecan-system.com</a>");
ui->labAuthor->setText(QString("版权 : %1").arg(App::Author));
this->setProperty("CanMove", true);
this->setWindowTitle(ui->lab_Title->text());
this->setAttribute(Qt::WA_TranslucentBackground);
this->setWindowFlags(Qt::FramelessWindowHint | Qt::WindowSystemMenuHint | Qt::WindowMinimizeButtonHint);
IconHelper::Instance()->SetIcoMain(ui->lab_Ico, 15);
IconHelper::Instance()->SetIcoClose(ui->btnMenu_Close);
connect(ui->btnMenu_Close, SIGNAL(clicked()), this, SLOT(close()));
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/luhuanhuan200/GAS.git
git@gitee.com:luhuanhuan200/GAS.git
luhuanhuan200
GAS
GAS
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385