36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
################################################################################
|
|
## Form generated from reading UI file 'second-window.ui'
|
|
##
|
|
## Created by: Qt User Interface Compiler version 5.15.2
|
|
##
|
|
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
################################################################################
|
|
|
|
from PySide2.QtCore import *
|
|
from PySide2.QtGui import *
|
|
from PySide2.QtWidgets import *
|
|
|
|
|
|
class Ui_Second_Window(object):
|
|
def setupUi(self, Second_Window):
|
|
if not Second_Window.objectName():
|
|
Second_Window.setObjectName(u"Second_Window")
|
|
Second_Window.resize(1096, 734)
|
|
Second_Window.setStyleSheet(u"background-color: rgb(66, 69, 73);")
|
|
self.label = QLabel(Second_Window)
|
|
self.label.setObjectName(u"label")
|
|
self.label.setGeometry(QRect(100, 110, 56, 12))
|
|
|
|
self.retranslateUi(Second_Window)
|
|
|
|
QMetaObject.connectSlotsByName(Second_Window)
|
|
# setupUi
|
|
|
|
def retranslateUi(self, Second_Window):
|
|
Second_Window.setWindowTitle(QCoreApplication.translate("Second_Window", u"Form", None))
|
|
self.label.setText(QCoreApplication.translate("Second_Window", u"2", None))
|
|
# retranslateUi
|
|
|