📄 simplelistapp.h
字号:
#ifndef SIMPLELIST_H#define SIMPLELIST_H#include <QApplication>#include <QListView>#include <QStringListModel>#include <QMainWindow>#include <QPushButton>/* Controller example */class SimpleListApp : public QApplication { Q_OBJECT public: SimpleListApp(int argc, char* argv[]); public slots: void showNewChanges(); void addItem(); private: QStringListModel m_Model; /* created first */ QMainWindow m_Window; QListView m_View; QPushButton m_Button; /* destroyed first */};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -