123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # Form implementation generated from reading ui file 'findserver.ui'
- #
- # Created by: PyQt6 UI code generator 6.5.1
- #
- # WARNING: Any manual changes made to this file will be lost when pyuic6 is
- # run again. Do not edit this file unless you know what you are doing.
- from PyQt6 import QtCore, QtWidgets
- from PyQt6.QtGui import QIcon
- from PyQt6.QtWidgets import QAbstractItemView
- class Ui_FormLink(object):
- def setupUi(self, FormLink):
- FormLink.setObjectName("FormLink")
- FormLink.resize(440, 240)
- FormLink.setMinimumSize(QtCore.QSize(440, 240))
- FormLink.setMaximumSize(QtCore.QSize(440, 240))
- FormLink.setWindowIcon(QIcon(':/icon/1.ico'))
- FormLink.setLayoutDirection(QtCore.Qt.LayoutDirection.RightToLeft)
- self.gridLayout = QtWidgets.QGridLayout(FormLink)
- self.gridLayout.setObjectName("gridLayout")
- self.tableWidget = QtWidgets.QTableWidget(parent=FormLink)
- self.tableWidget.setLayoutDirection(QtCore.Qt.LayoutDirection.LeftToRight)
- self.tableWidget.setObjectName("tableWidget")
- self.tableWidget.setColumnCount(0)
- self.tableWidget.setRowCount(0)
- self.tableWidget.setSelectionBehavior(QAbstractItemView.SelectionBehavior.SelectRows)
- self.tableWidget.setSelectionMode(QAbstractItemView.SelectionMode.SingleSelection)
- self.gridLayout.addWidget(self.tableWidget, 0, 0, 1, 1)
- self.pushButton_manset = QtWidgets.QPushButton(parent=FormLink)
- self.pushButton_manset.setMaximumSize(QtCore.QSize(80, 16777215))
- self.pushButton_manset.setObjectName("pushButton_manset")
- self.gridLayout.addWidget(self.pushButton_manset, 1, 0, 1, 1)
- self.retranslateUi(FormLink)
- QtCore.QMetaObject.connectSlotsByName(FormLink)
- def retranslateUi(self, FormLink):
- _translate = QtCore.QCoreApplication.translate
- FormLink.setWindowTitle(_translate("FormLink", "查找服务器"))
- self.pushButton_manset.setText(_translate("FormLink", "人工配置"))
|