随笔分类 -  qt5

摘要:简介 第一个程序 窗口类:QWidget, QMainWindow, QDialog main: #include "mywidget.h" #include <QApplication> //包含一个应用程序类的头文件 int main(int argc, char *argv[]) { // 应 阅读全文
posted @ 2022-05-27 14:11 nsfoxer 阅读(31) 评论(0) 推荐(0)
摘要:按钮 #include "mywidget.h" #include <qpushbutton.h> MyWidget::MyWidget(QWidget *parent) : QWidget(parent) { // first button QPushButton *btn = new QPush 阅读全文
posted @ 2022-05-27 14:11 nsfoxer 阅读(31) 评论(0) 推荐(0)