添加deviceMgr
parent
618c9c8a2d
commit
69aee070bd
@ -0,0 +1,11 @@
|
||||
#include "QDeviceMgrUI.h"
|
||||
|
||||
QDeviceMgrUI::QDeviceMgrUI(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
ui.setupUi(this);
|
||||
}
|
||||
|
||||
QDeviceMgrUI::~QDeviceMgrUI()
|
||||
{
|
||||
}
|
||||
@ -0,0 +1,19 @@
|
||||
#ifndef _H_QDEVICEMGRUI_H_
|
||||
#define _H_QDEVICEMGRUI_H_
|
||||
|
||||
#include <QWidget>
|
||||
#include "ui_QDeviceMgrUI.h"
|
||||
|
||||
class QDeviceMgrUI : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
QDeviceMgrUI(QWidget *parent = Q_NULLPTR);
|
||||
~QDeviceMgrUI();
|
||||
|
||||
private:
|
||||
Ui::QDeviceMgrUI ui;
|
||||
};
|
||||
|
||||
#endif
|
||||
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>QDeviceMgrUI</class>
|
||||
<widget class="QWidget" name="QDeviceMgrUI">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>400</width>
|
||||
<height>300</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>设备管理</string>
|
||||
</property>
|
||||
</widget>
|
||||
<layoutdefault spacing="6" margin="11"/>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
||||
Loading…
Reference in New Issue