上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 112 下一页
摘要: #include "widget.h" #include "ui_widget.h" Widget::Widget(QWidget *parent) : QWidget(parent) , ui(new Ui::Widget) { ui->setupUi(this); /* 安装事件过滤器 */ u 阅读全文
posted @ 2022-08-03 23:41 thomas_blog 阅读(45) 评论(0) 推荐(0) 编辑
摘要: #ifndef MYLABEL_H #define MYLABEL_H #include <QWidget> #include <QDebug> #include <QMouseEvent> #include <QEvent> #include <QLabel> namespace Ui { cla 阅读全文
posted @ 2022-08-03 22:32 thomas_blog 阅读(53) 评论(0) 推荐(0) 编辑
摘要: #ifndef MYLABEL_H #define MYLABEL_H #include <QWidget> #include <QDebug> #include <QMouseEvent> #include <QLabel> namespace Ui { class MyLabel; } clas 阅读全文
posted @ 2022-08-03 22:03 thomas_blog 阅读(131) 评论(0) 推荐(0) 编辑
摘要: #ifndef MYBUTTON_H #define MYBUTTON_H #include <QWidget> #include <QDebug> #include <QPushButton> namespace Ui { class MyButton; } class MyButton : pu 阅读全文
posted @ 2022-08-03 21:30 thomas_blog 阅读(29) 评论(0) 推荐(0) 编辑
摘要: #include "widget.h" #include "ui_widget.h" #include <QMovie> Widget::Widget(QWidget *parent) : QWidget(parent) , ui(new Ui::Widget) { ui->setupUi(this 阅读全文
posted @ 2022-08-03 14:34 thomas_blog 阅读(157) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2022.cnblogs.com/blog/1747317/202208/1747317-20220803140022646-1342714597.png) ![](https://img2022.cnblogs.com/blog/1747317/202208/1747317-20220803140035735-680190620.png) 阅读全文
posted @ 2022-08-03 14:01 thomas_blog 阅读(6) 评论(0) 推荐(0) 编辑
摘要: #include "widget.h" #include "ui_widget.h" #include <QDebug> #include <QDialog> #include "mywidget.h" Widget::Widget(QWidget *parent) : QWidget(parent 阅读全文
posted @ 2022-08-03 08:16 thomas_blog 阅读(20) 评论(0) 推荐(0) 编辑
摘要: #include "mainwindow.h" #include "ui_mainwindow.h" #include <QDockWidget> #include <QTextEdit> MainWindow::MainWindow(QWidget *parent) : QMainWindow(p 阅读全文
posted @ 2022-08-02 23:10 thomas_blog 阅读(151) 评论(0) 推荐(0) 编辑
摘要: #ifndef WIDGET_H #define WIDGET_H #include <QWidget> QT_BEGIN_NAMESPACE namespace Ui { class Widget; } QT_END_NAMESPACE class Widget : public QWidget 阅读全文
posted @ 2022-08-01 22:06 thomas_blog 阅读(21) 评论(0) 推荐(0) 编辑
摘要: #include "widget.h" #include "ui_widget.h" #include <QDebug> Widget::Widget(QWidget *parent) : QWidget(parent) , ui(new Ui::Widget) { ui->setupUi(this 阅读全文
posted @ 2022-08-01 20:46 thomas_blog 阅读(67) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 112 下一页