📄 detail.h
字号:
#ifndef DETAIL_H
#define DETAIL_H
#include <QLabel>
#include <QLineEdit>
#include <QTextEdit>
#include <QComboBox>
class Detail : public QWidget
{
Q_OBJECT
public:
Detail(QWidget *parent = 0, Qt::WindowFlags f1 = 0);
QLabel *label1;
QLabel *label2;
QLabel *label3;
QLabel *label4;
QComboBox *comboBoxCountry;
QComboBox *comboBoxProvince;
QLineEdit *lineeditCity;
QTextEdit *texteditPriv;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -