| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>LoginForm</class>
- <widget class="QWidget" name="LoginForm">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>357</width>
- <height>241</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Form</string>
- </property>
- <property name="styleSheet">
- <string notr="true">background-color: rgb(255, 255, 255);</string>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <widget class="QWidget" name="widget" native="true">
- <property name="styleSheet">
- <string notr="true">background-color: rgb(185, 229, 255);</string>
- </property>
- <widget class="QLabel" name="label_2">
- <property name="geometry">
- <rect>
- <x>20</x>
- <y>90</y>
- <width>58</width>
- <height>18</height>
- </rect>
- </property>
- <property name="text">
- <string>密码:</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="lineUser">
- <property name="geometry">
- <rect>
- <x>100</x>
- <y>40</y>
- <width>191</width>
- <height>32</height>
- </rect>
- </property>
- </widget>
- <widget class="QLabel" name="status">
- <property name="geometry">
- <rect>
- <x>60</x>
- <y>10</y>
- <width>201</width>
- <height>21</height>
- </rect>
- </property>
- <property name="text">
- <string>正在登陆中······</string>
- </property>
- </widget>
- <widget class="QLabel" name="label">
- <property name="geometry">
- <rect>
- <x>20</x>
- <y>50</y>
- <width>58</width>
- <height>18</height>
- </rect>
- </property>
- <property name="text">
- <string>用户名:</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="linePass">
- <property name="geometry">
- <rect>
- <x>100</x>
- <y>80</y>
- <width>191</width>
- <height>31</height>
- </rect>
- </property>
- </widget>
- <widget class="QPushButton" name="pushLogin">
- <property name="geometry">
- <rect>
- <x>100</x>
- <y>120</y>
- <width>81</width>
- <height>41</height>
- </rect>
- </property>
- <property name="styleSheet">
- <string notr="true">background-color: rgb(129, 207, 255);</string>
- </property>
- <property name="text">
- <string>登陆</string>
- </property>
- <property name="autoDefault">
- <bool>true</bool>
- </property>
- <property name="default">
- <bool>true</bool>
- </property>
- <property name="flat">
- <bool>false</bool>
- </property>
- </widget>
- <widget class="QPushButton" name="pushButton">
- <property name="geometry">
- <rect>
- <x>210</x>
- <y>120</y>
- <width>81</width>
- <height>41</height>
- </rect>
- </property>
- <property name="text">
- <string>离线进入</string>
- </property>
- </widget>
- </widget>
- </item>
- </layout>
- </widget>
- <resources/>
- <connections/>
- </ui>
|