Files
kis_trader/sample_python/second_window.py
2026-07-30 18:05:07 +09:00

32 lines
1.0 KiB
Python

# from PySide2 import QtCore, QtWidgets
# from PySide2.QtUiTools import QUiLoader
# from PySide2.QtWidgets import QWidget
# # from .ui.ui_test import Ui_Test
# # from ui.ui_test import Ui_Test
# from ui.ui_second_window import Ui_Second_Window
# loader=QUiLoader()
# class Second_Window(QWidget,Ui_Second_Window):
# def __init__(self):
# super().__init__()
# self.setupUi(self)
# self.setWindowTitle("Xing Api Client By Woojae")
# # self.submit_btn.clicked.connect(self.do_action)
# # self.login_label.clicked.connect(self.do_action)
# def do_action(self):
# #print('doing: ',self.name_line_edit.text())
# #print('doing2: ',self.job_line_edit.text())
# self.login_label.setText('되냐?')
# def set_the_text(self,the_thing):
# #print('세팅한다: ',the_thing)
# self.login_label.setText(the_thing)
# def set_the_stock_code(self,the_thing):
# #print('세팅한다2: ',the_thing)
# self.stock_code_label.setText(the_thing)