12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>DialogEditComment</class>
- <widget class="QWidget" name="DialogEditComment">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>301</width>
- <height>170</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>DialogEditComment</string>
- </property>
- <widget class="QGroupBox" name="groupBox">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>10</y>
- <width>281</width>
- <height>111</height>
- </rect>
- </property>
- <property name="title">
- <string>请输入新的注释</string>
- </property>
- <widget class="QTextEdit" name="textComment">
- <property name="geometry">
- <rect>
- <x>20</x>
- <y>30</y>
- <width>241</width>
- <height>61</height>
- </rect>
- </property>
- </widget>
- </widget>
- <widget class="QPushButton" name="okButton">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>130</y>
- <width>91</width>
- <height>31</height>
- </rect>
- </property>
- <property name="text">
- <string>确定</string>
- </property>
- <property name="default">
- <bool>true</bool>
- </property>
- </widget>
- <widget class="QPushButton" name="cancelButton">
- <property name="geometry">
- <rect>
- <x>170</x>
- <y>130</y>
- <width>91</width>
- <height>31</height>
- </rect>
- </property>
- <property name="text">
- <string>取消</string>
- </property>
- </widget>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <resources/>
- <connections/>
- </ui>
|