上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 75 下一页

2020年7月30日

Qt按钮自定义特效buttonEffects

摘要: 相关资料:不记得是在哪里看到的了,不好意思了原作者。 .pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # The following define ma 阅读全文

posted @ 2020-07-30 18:06 疯狂delphi 阅读(409) 评论(0) 推荐(0)

Qt操作Thread类

摘要: 相关资料: https://blog.csdn.net/u012635648/article/details/89504115 https://blog.csdn.net/qq_28171461/article/details/90518324 .pro 1 QT += core gui 2 QT 阅读全文

posted @ 2020-07-30 17:40 疯狂delphi 阅读(390) 评论(0) 推荐(0)

Qt操作XML文件

摘要: PS:需要在工程文件.pro中增加xml .pro QT += core xml QT -= gui TARGET = xmltest CONFIG += console CONFIG -= app_bundle TEMPLATE = app SOURCES += main.cpp View Cod 阅读全文

posted @ 2020-07-30 17:05 疯狂delphi 阅读(283) 评论(0) 推荐(0)

QT-Qt中MediaPlay的使用,播放视频或MP4

摘要: 相关资料: https://blog.csdn.net/itas109/article/details/83829396 https://blog.csdn.net/birenxiaofeigg/article/details/104129207 https://www.cnblogs.com/zh 阅读全文

posted @ 2020-07-30 16:10 疯狂delphi 阅读(1600) 评论(4) 推荐(0)

2020年7月21日

QT-Qt5在使用showFullScreen窗口全屏状态下,ComboBox的下拉框无法显示,Tabel控件提示无法显示,输入法后选框无法显示问题?

摘要: 相关资料: https://www.cnblogs.com/lvdongjie/p/3758025.html 问题情况: 在单位做一个和OSG相关的界面程序,主程序使用了showFullScreen函数,发现子容器(QWidget)里的ComboBox的下拉框无法显示。在百度上搜索了一下,发现Com 阅读全文

posted @ 2020-07-21 17:45 疯狂delphi 阅读(1924) 评论(0) 推荐(0)

2020年7月17日

QT-Qt组件QTimer使用方法

摘要: 相关资料: https://blog.csdn.net/u014783974/article/details/81486491 main.cpp 1 #include "mainwindow.h" 2 3 #include <QApplication> 4 5 int main(int argc, 阅读全文

posted @ 2020-07-17 16:36 疯狂delphi 阅读(758) 评论(0) 推荐(0)

QT-Qt显示GIF图片

摘要: 相关资料: https://blog.csdn.net/kidults/article/details/80195524 main.cpp 1 #include "mainwindow.h" 2 3 #include <QApplication> 4 5 int main(int argc, cha 阅读全文

posted @ 2020-07-17 15:50 疯狂delphi 阅读(428) 评论(0) 推荐(0)

2020年7月16日

QT-Qt设置背景图片

摘要: 一、paintEvent法(平时没事,用在OSG中就不行了,因为TMD会一直调paintEvent事件,刷新到卡爆) main.cpp 1 #include "mainwindow.h" 2 3 #include <QApplication> 4 5 int main(int argc, char 阅读全文

posted @ 2020-07-16 14:21 疯狂delphi 阅读(784) 评论(0) 推荐(0)

2020年7月15日

QT-Qt图片按钮类

摘要: main.cpp 1 #include "mainwindow.h" 2 3 #include <QApplication> 4 5 int main(int argc, char *argv[]) 6 { 7 QApplication a(argc, argv); 8 MainWindow w; 阅读全文

posted @ 2020-07-15 18:02 疯狂delphi 阅读(404) 评论(0) 推荐(0)

QT-Qt界面居中显示

摘要: main.cpp 1 #include "mainwindow.h" 2 3 #include <QApplication> 4 5 int main(int argc, char *argv[]) 6 { 7 QApplication a(argc, argv); 8 MainWindow w; 阅读全文

posted @ 2020-07-15 09:44 疯狂delphi 阅读(619) 评论(0) 推荐(0)

上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 75 下一页

导航