新增图片开关控件

This commit is contained in:
feiyangqingyun
2020-02-11 16:23:50 +08:00
parent e9f140c9ff
commit 8fc4ba7f4a
16 changed files with 339 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
#ifndef FRMIMAGESWITCH_H
#define FRMIMAGESWITCH_H
#include <QWidget>
namespace Ui {
class frmImageSwitch;
}
class frmImageSwitch : public QWidget
{
Q_OBJECT
public:
explicit frmImageSwitch(QWidget *parent = 0);
~frmImageSwitch();
private:
Ui::frmImageSwitch *ui;
private slots:
void initForm();
};
#endif // FRMIMAGESWITCH_H