123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>login</class>
- <widget class="QWidget" name="login">
- <property name="windowModality">
- <enum>Qt::NonModal</enum>
- </property>
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>360</width>
- <height>140</height>
- </rect>
- </property>
- <property name="minimumSize">
- <size>
- <width>360</width>
- <height>140</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>360</width>
- <height>140</height>
- </size>
- </property>
- <property name="windowTitle">
- <string>登录</string>
- </property>
- <property name="toolTip">
- <string/>
- </property>
- <layout class="QGridLayout" name="gridLayout">
- <property name="sizeConstraint">
- <enum>QLayout::SetMinimumSize</enum>
- </property>
- <item row="1" column="1">
- <widget class="QLineEdit" name="lineEditPassword">
- <property name="echoMode">
- <enum>QLineEdit::Password</enum>
- </property>
- </widget>
- </item>
- <item row="1" column="0">
- <widget class="QLabel" name="label_2">
- <property name="text">
- <string>密码</string>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QLineEdit" name="lineEditUser"/>
- </item>
- <item row="0" column="0">
- <widget class="QLabel" name="label">
- <property name="text">
- <string>用户名</string>
- </property>
- </widget>
- </item>
- <item row="2" column="1">
- <widget class="QPushButton" name="pushButton">
- <property name="text">
- <string>登录</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <tabstops>
- <tabstop>lineEditUser</tabstop>
- <tabstop>lineEditPassword</tabstop>
- <tabstop>pushButton</tabstop>
- </tabstops>
- <resources/>
- <connections/>
- </ui>
|