摘要:
lambda表达式 C++11中才有lambda表达式 Qt5.4及以下的可能要在.pro文件中加上CONFIG += c++11 语法 [函数对象参数](操作符重载函数参数)mutable->返回值{函数体} 详解 https://www.cnblogs.com/jimodetiantang/p/ 阅读全文
摘要:
信号和槽 概述 示例代码 // mywidget.cpp #include "mywidget.h" MyWidget::MyWidget(QWidget *parent) : QWidget(parent) { QPushButton *btn = new QPushButton; btn->se 阅读全文
摘要:
Qt中的坐标系 阅读全文
摘要:
QPushButton 头文件 #include <QPushButton> QPushButton的父类是QWidget 常用接口 #include "mywidget.h" MyWidget::MyWidget(QWidget *parent) : QWidget(parent) { // 常用 阅读全文
摘要:
主函数 #include "mywidget.h" #include <QApplication> // 应用程序头文件 int main(int argc, char *argv[]) { QApplication a(argc, argv); // 应用程序对象,有且只有一个 MyWidget 阅读全文