12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>RootForm</class>
- <widget class="QWidget" name="RootForm">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>747</width>
- <height>440</height>
- </rect>
- </property>
- <property name="sizePolicy">
- <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="windowTitle">
- <string>Form</string>
- </property>
- <property name="autoFillBackground">
- <bool>true</bool>
- </property>
- <layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0">
- <widget class="QTreeView" name="view">
- <property name="autoFillBackground">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item row="1" column="0">
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <spacer name="horizontalSpacer">
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="sizeType">
- <enum>QSizePolicy::Expanding</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>40</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- <item>
- <widget class="QPushButton" name="addKeyBtn">
- <property name="text">
- <string>添加键</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QPushButton" name="delKeyBtn">
- <property name="text">
- <string>删除键</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QPushButton" name="addSectionBtn">
- <property name="text">
- <string>添加节点</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QPushButton" name="delSectionBtn">
- <property name="text">
- <string>删除节点</string>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- <resources/>
- <connections/>
- </ui>
|