| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>DialogDbBackupAndRecovery</class>
- <widget class="QDialog" name="DialogDbBackupAndRecovery">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>390</width>
- <height>240</height>
- </rect>
- </property>
- <property name="sizePolicy">
- <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>390</width>
- <height>240</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>390</width>
- <height>240</height>
- </size>
- </property>
- <property name="windowTitle">
- <string>数据备份</string>
- </property>
- <widget class="QWidget" name="horizontalLayoutWidget">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>10</y>
- <width>371</width>
- <height>221</height>
- </rect>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <widget class="QGroupBox" name="groupBox">
- <property name="title">
- <string>数据备份</string>
- </property>
- <widget class="QPushButton" name="pushButtonBackup">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>90</y>
- <width>75</width>
- <height>23</height>
- </rect>
- </property>
- <property name="text">
- <string>备份...</string>
- </property>
- </widget>
- </widget>
- </item>
- <item>
- <widget class="QGroupBox" name="groupBox_2">
- <property name="title">
- <string>数据恢复</string>
- </property>
- <widget class="QPushButton" name="pushButtonRecovery">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>90</y>
- <width>75</width>
- <height>23</height>
- </rect>
- </property>
- <property name="text">
- <string>恢复...</string>
- </property>
- </widget>
- </widget>
- </item>
- </layout>
- </widget>
- </widget>
- <resources/>
- <connections/>
- </ui>
|