Qt工程
竺蠡
一只小菜鸟的学习心得
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Qt- ini文件
#ifndef INIFILE_H #define INIFILE_H #include <QSettings> #include "UpdateSystem/UpdateSystem.h" class IniFile { public: IniFile(); void CreatExampleIniFile(QString path); //创建新文件 void ReadIniFile(); // 返回数据 bool CheckIni(); QSet.原创 2020-06-09 10:03:56 · 672 阅读 · 0 评论 -
qt TextEdit 带色操作
void MainWindow::showTip_Rev(QString text, QColor color) { QDateTime *datatime = new QDateTime(QDateTime::currentDateTime()); // 系统时间 QString str_time = datatime->toString("yyyy-MM-dd hh:mm:ss:zzz"); //设置显示格式 ui->textEdit_ShowBoard->a.原创 2020-06-08 09:40:29 · 385 阅读 · 0 评论 -
QT 常用的数据转换
/** * @file DataTpye_Qt.h * @brief This is a common data transformation of qt for portable use. * @details This is the detail description. * @author Huang Zhudong * @date 2019-05-31 * @version v1.4 * @par Copyright (c): * @par H.原创 2020-06-05 15:07:51 · 1649 阅读 · 0 评论 -
qt-嵌入其他exe文件
近期有一个这样的问题困扰着我,就有一个别人写的软件,我需要在qt里面嵌入这个软件,同时执行这个软件。 如何实现呢? 现在我写一个简单的被嵌入软件A.exe,假设A软件代码很简单,就是打印A软件带的参数。比如像下面这样的exe程序: 这里我只是以A.exe打个比方而已。然后如何将此软件嵌入qt的图形界面呢? 我们需要新建一个QT Widgets Application工程,取名为Inse...原创 2019-05-11 12:03:35 · 5777 阅读 · 5 评论
分享