上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 75 下一页

2021年4月13日

Qtt利用QPainter实现铵扭switchButton

摘要: .pro 1 # 2 # 3 # Project created by QtCreator 2019-06-20T17:49:03 4 # 5 # 6 7 QT += core gui 8 9 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 10 11 阅读全文

posted @ 2021-04-13 17:03 疯狂delphi 阅读(223) 评论(0) 推荐(0) 编辑

Qt5利用自绘QPainter实现水波纹进度条QProgressBarWater

摘要: .pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # The following define makes your compiler emit warn 阅读全文

posted @ 2021-04-13 16:56 疯狂delphi 阅读(352) 评论(0) 推荐(0) 编辑

Qt5利用自绘实现云台GaugeCloud

摘要: .pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # The following define makes your compiler emit warn 阅读全文

posted @ 2021-04-13 16:49 疯狂delphi 阅读(373) 评论(0) 推荐(0) 编辑

Qt5利用自绘实现遥感

摘要: .pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # The following define makes your compiler emit warn 阅读全文

posted @ 2021-04-13 16:39 疯狂delphi 阅读(114) 评论(0) 推荐(0) 编辑

Qt使用QSS对horizontalSlider进行样式设置

摘要: 相关资料: https://mingshiqiang.blog.csdn.net/article/details/109545804 https://blog.csdn.net/parkchorong/article/details/102629913 https://blog.csdn.net/q 阅读全文

posted @ 2021-04-13 13:52 疯狂delphi 阅读(2247) 评论(0) 推荐(0) 编辑

Qt-QProgressBar的QSS

摘要: 相关资料: https://blog.csdn.net/wzs250969969/article/details/78490234 https://mingshiqiang.blog.csdn.net/article/details/109545579 效果1: QProgressBar { /* 阅读全文

posted @ 2021-04-13 13:40 疯狂delphi 阅读(1032) 评论(0) 推荐(0) 编辑

2021年4月8日

Qt-QLineEdit使用与说明

摘要: 相关资料: https://www.it610.com/article/1287601767604858880.htm QT 如何设置 QLineEdit 背景提示文字 说明: .h文件 #include <QLineEdit> #include <QCompleter> #include <QVa 阅读全文

posted @ 2021-04-08 14:22 疯狂delphi 阅读(330) 评论(0) 推荐(0) 编辑

QT学习之QString的arg方法

摘要: 相关资料 https://www.cnblogs.com/lomper/p/4135387.html QT学习之QString的arg方法 在QT的QString中,arg方法类似于C中的printf中使用的格式输出符(只是有点类似)。 在QT5的帮助文档中,可以看出以下几点: 使用arg(str1 阅读全文

posted @ 2021-04-08 14:20 疯狂delphi 阅读(513) 评论(0) 推荐(0) 编辑

学习QT之QString详解

摘要: 相关资料: https://www.icode9.com/content-4-646552.html 学习QT之QString详解 QString类保存16位Unicode值,提供了丰富的操作、查询和转换函数。该类还进行了使用隐式共享、高效的内存分配策略等多方面的优化。 一、字符串常用操作字符串的操 阅读全文

posted @ 2021-04-08 13:58 疯狂delphi 阅读(1474) 评论(0) 推荐(0) 编辑

2021年4月2日

C++之数据、结构体初始化值为0

摘要: 1 void MainWindow::on_pushButton_clicked() 2 { 3 int nInt[20]; 4 nInt[0] = 1; 5 nInt[1] = 2;// 数据乱的一塌糊涂 6 7 int nInt2[20]; 8 memset(nInt2, 0, sizeof(n 阅读全文

posted @ 2021-04-02 10:53 疯狂delphi 阅读(1777) 评论(0) 推荐(0) 编辑

上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 75 下一页

导航