1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>clEditPassword</class>
- <widget class="QWidget" name="clEditPassword">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>587</width>
- <height>407</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Form</string>
- </property>
- <widget class="QLineEdit" name="edt_oldPassword">
- <property name="geometry">
- <rect>
- <x>70</x>
- <y>40</y>
- <width>113</width>
- <height>20</height>
- </rect>
- </property>
- <property name="echoMode">
- <enum>QLineEdit::Password</enum>
- </property>
- <property name="placeholderText">
- <string>请输入旧密码</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="edt_newPassword">
- <property name="geometry">
- <rect>
- <x>70</x>
- <y>90</y>
- <width>113</width>
- <height>20</height>
- </rect>
- </property>
- <property name="echoMode">
- <enum>QLineEdit::Password</enum>
- </property>
- <property name="placeholderText">
- <string>请输入新密码(6到18位数字或字母)</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="edt_newPassword1">
- <property name="geometry">
- <rect>
- <x>70</x>
- <y>140</y>
- <width>113</width>
- <height>20</height>
- </rect>
- </property>
- <property name="echoMode">
- <enum>QLineEdit::Password</enum>
- </property>
- <property name="placeholderText">
- <string>请再次输入新密码</string>
- </property>
- </widget>
- <widget class="QPushButton" name="btn_savePassword">
- <property name="geometry">
- <rect>
- <x>70</x>
- <y>200</y>
- <width>75</width>
- <height>23</height>
- </rect>
- </property>
- <property name="text">
- <string>保存</string>
- </property>
- </widget>
- </widget>
- <resources/>
- <connections/>
- </ui>
|