79 lines
3.8 KiB
Python
79 lines
3.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Form implementation generated from reading ui file 'loginui.ui'
|
|
#
|
|
# Created by: PyQt5 UI code generator 5.15.7
|
|
#
|
|
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
|
|
# run again. Do not edit this file unless you know what you are doing.
|
|
|
|
|
|
from PyQt5 import QtCore, QtGui, QtWidgets
|
|
|
|
|
|
class Ui_Dialog(object):
|
|
def setupUi(self, Dialog):
|
|
Dialog.setObjectName("Dialog")
|
|
Dialog.resize(314, 152)
|
|
self.gridLayout = QtWidgets.QGridLayout(Dialog)
|
|
self.gridLayout.setObjectName("gridLayout")
|
|
spacerItem = QtWidgets.QSpacerItem(20, 127, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
|
self.gridLayout.addItem(spacerItem, 0, 0, 2, 1)
|
|
spacerItem1 = QtWidgets.QSpacerItem(259, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
self.gridLayout.addItem(spacerItem1, 0, 1, 1, 1)
|
|
self.verticalLayout_2 = QtWidgets.QVBoxLayout()
|
|
self.verticalLayout_2.setObjectName("verticalLayout_2")
|
|
self.verticalLayout = QtWidgets.QVBoxLayout()
|
|
self.verticalLayout.setObjectName("verticalLayout")
|
|
self.horizontalLayout = QtWidgets.QHBoxLayout()
|
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
|
self.label = QtWidgets.QLabel(Dialog)
|
|
font = QtGui.QFont()
|
|
font.setFamily("Arial")
|
|
font.setPointSize(12)
|
|
self.label.setFont(font)
|
|
self.label.setObjectName("label")
|
|
self.horizontalLayout.addWidget(self.label)
|
|
self.lineEdit_userid = QtWidgets.QLineEdit(Dialog)
|
|
self.lineEdit_userid.setMinimumSize(QtCore.QSize(154, 24))
|
|
self.lineEdit_userid.setObjectName("lineEdit_userid")
|
|
self.horizontalLayout.addWidget(self.lineEdit_userid)
|
|
self.verticalLayout.addLayout(self.horizontalLayout)
|
|
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
|
|
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
|
|
self.label_2 = QtWidgets.QLabel(Dialog)
|
|
font = QtGui.QFont()
|
|
font.setFamily("Arial")
|
|
font.setPointSize(12)
|
|
self.label_2.setFont(font)
|
|
self.label_2.setObjectName("label_2")
|
|
self.horizontalLayout_2.addWidget(self.label_2)
|
|
self.lineEdit_password = QtWidgets.QLineEdit(Dialog)
|
|
self.lineEdit_password.setMinimumSize(QtCore.QSize(155, 24))
|
|
self.lineEdit_password.setObjectName("lineEdit_password")
|
|
self.horizontalLayout_2.addWidget(self.lineEdit_password)
|
|
self.verticalLayout.addLayout(self.horizontalLayout_2)
|
|
self.verticalLayout_2.addLayout(self.verticalLayout)
|
|
self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
|
|
self.horizontalLayout_3.setObjectName("horizontalLayout_3")
|
|
spacerItem2 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
self.horizontalLayout_3.addItem(spacerItem2)
|
|
self.btn_login = QtWidgets.QPushButton(Dialog)
|
|
self.btn_login.setMinimumSize(QtCore.QSize(141, 28))
|
|
self.btn_login.setObjectName("btn_login")
|
|
self.horizontalLayout_3.addWidget(self.btn_login)
|
|
spacerItem3 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
self.horizontalLayout_3.addItem(spacerItem3)
|
|
self.verticalLayout_2.addLayout(self.horizontalLayout_3)
|
|
self.gridLayout.addLayout(self.verticalLayout_2, 1, 1, 1, 1)
|
|
|
|
self.retranslateUi(Dialog)
|
|
QtCore.QMetaObject.connectSlotsByName(Dialog)
|
|
|
|
def retranslateUi(self, Dialog):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
Dialog.setWindowTitle(_translate("Dialog", "登入"))
|
|
self.label.setText(_translate("Dialog", "Username:"))
|
|
self.label_2.setText(_translate("Dialog", "Password:"))
|
|
self.btn_login.setText(_translate("Dialog", "登入"))
|