⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 customereditdialog.h

📁 一个简单的美容院商品和顾客资料管理程序
💻 H
字号:
#ifndef CUSTOMEREDITDIALOG_H
#define CUSTOMEREDITDIALOG_H

#include <QtGui/QDialog>
#include <QtSql/QSqlRecord>
#include "ui_customereditdialog.h"

class CustomerEditDialog : public QDialog, public Ui::CustomerEditDialog
{
	Q_OBJECT
public:
	CustomerEditDialog(QWidget *parent);
	CustomerEditDialog(QWidget *parent, const QSqlRecord &record);
	~CustomerEditDialog();
	QString strSqlExec();
public slots:
	void on_okButton_clicked();
private:
	int m_iCustomerId;
	QString m_strSqlExec;
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -