You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.9 KiB
Python
39 lines
1.9 KiB
Python
4 weeks ago
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Form implementation generated from reading ui file 'e:\01-Projects\19-Fly\01-AppFlow-gitea\GUIWidget\PropertyEmptyWidget.ui'
|
||
|
#
|
||
|
# Created by: PyQt5 UI code generator 5.15.10
|
||
|
#
|
||
|
# 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_PropertyEmptyWidget(object):
|
||
|
def setupUi(self, PropertyEmptyWidget):
|
||
|
PropertyEmptyWidget.setObjectName("PropertyEmptyWidget")
|
||
|
PropertyEmptyWidget.resize(381, 421)
|
||
|
self.gridLayout = QtWidgets.QGridLayout(PropertyEmptyWidget)
|
||
|
self.gridLayout.setObjectName("gridLayout")
|
||
|
spacerItem = QtWidgets.QSpacerItem(20, 121, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
||
|
self.gridLayout.addItem(spacerItem, 0, 1, 1, 1)
|
||
|
spacerItem1 = QtWidgets.QSpacerItem(149, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
||
|
self.gridLayout.addItem(spacerItem1, 1, 0, 1, 1)
|
||
|
self.lb_tip = QtWidgets.QLabel(PropertyEmptyWidget)
|
||
|
self.lb_tip.setObjectName("lb_tip")
|
||
|
self.gridLayout.addWidget(self.lb_tip, 1, 1, 1, 1)
|
||
|
spacerItem2 = QtWidgets.QSpacerItem(148, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
||
|
self.gridLayout.addItem(spacerItem2, 1, 2, 1, 1)
|
||
|
spacerItem3 = QtWidgets.QSpacerItem(20, 120, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
||
|
self.gridLayout.addItem(spacerItem3, 2, 1, 1, 1)
|
||
|
|
||
|
self.retranslateUi(PropertyEmptyWidget)
|
||
|
QtCore.QMetaObject.connectSlotsByName(PropertyEmptyWidget)
|
||
|
|
||
|
def retranslateUi(self, PropertyEmptyWidget):
|
||
|
_translate = QtCore.QCoreApplication.translate
|
||
|
PropertyEmptyWidget.setWindowTitle(_translate("PropertyEmptyWidget", "Empty Widget"))
|
||
|
self.lb_tip.setText(_translate("PropertyEmptyWidget", "TextLabel"))
|