ls증권 히스토리 구독 넣음
This commit is contained in:
35
sample_python/ui/ui_second_window.py
Normal file
35
sample_python/ui/ui_second_window.py
Normal file
@@ -0,0 +1,35 @@
|
||||
# -*- 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
|
||||
|
||||
Reference in New Issue
Block a user