12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>DialogSetPassWord</class>
- <widget class="QDialog" name="DialogSetPassWord">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>504</width>
- <height>300</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Dialog</string>
- </property>
- <widget class="QLineEdit" name="lineEdit_NewPass">
- <property name="geometry">
- <rect>
- <x>180</x>
- <y>103</y>
- <width>221</width>
- <height>40</height>
- </rect>
- </property>
- </widget>
- <widget class="QLineEdit" name="lineEdit_OldPass">
- <property name="geometry">
- <rect>
- <x>180</x>
- <y>44</y>
- <width>221</width>
- <height>41</height>
- </rect>
- </property>
- </widget>
- <widget class="QLabel" name="label_2">
- <property name="geometry">
- <rect>
- <x>60</x>
- <y>100</y>
- <width>101</width>
- <height>41</height>
- </rect>
- </property>
- <property name="text">
- <string>新密码</string>
- </property>
- </widget>
- <widget class="QLabel" name="label">
- <property name="geometry">
- <rect>
- <x>60</x>
- <y>40</y>
- <width>101</width>
- <height>41</height>
- </rect>
- </property>
- <property name="text">
- <string>原密码</string>
- </property>
- </widget>
- <widget class="QPushButton" name="pushButton_Set">
- <property name="geometry">
- <rect>
- <x>60</x>
- <y>200</y>
- <width>151</width>
- <height>51</height>
- </rect>
- </property>
- <property name="text">
- <string>设置</string>
- </property>
- </widget>
- <widget class="QPushButton" name="pushButton_Close">
- <property name="geometry">
- <rect>
- <x>300</x>
- <y>200</y>
- <width>151</width>
- <height>51</height>
- </rect>
- </property>
- <property name="text">
- <string>关闭</string>
- </property>
- </widget>
- </widget>
- <tabstops>
- <tabstop>lineEdit_OldPass</tabstop>
- <tabstop>lineEdit_NewPass</tabstop>
- <tabstop>pushButton_Set</tabstop>
- <tabstop>pushButton_Close</tabstop>
- </tabstops>
- <resources/>
- <connections/>
- </ui>
|