You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWATI/Include/mTool/mToolPvt/iWxPvtVasBeg.h

38 lines
595 B
C

#pragma once
#include "iWxPvtBase.h"
#include "mToolPvt_global.h"
namespace Ui {
class iWxPvtVasBeg;
}
// 注该类派生自iWxPvtBase仅仅是为了借用其getParaValue函数
class M_TOOL_PVT_EXPORT iWxPvtVasBeg : public iWxPvtBase
{
Q_OBJECT
public:
explicit iWxPvtVasBeg(QWidget *parent = 0);
~iWxPvtVasBeg();
// 初始化
virtual void initUI();
private slots:
void on_checkBox_clicked();
void on_btnOK_clicked();
void on_btnCancel_clicked();
private:
// 默认值填入
void initDefault();
private:
Ui::iWxPvtVasBeg *ui;
};