<aside> 💡 exec : pyinstaller(실행파일 만들기) Qt : PyQt라이브러리(그래픽처리)

</aside>

Table Widget

Property Editor → QTableWidget

rowCount 4

columnCount 4

더블클릭

windowTitle : 코인 실시간 정보

coin 디렉토리 → coin.ui

비주얼 스튜디오 코드에서 coin.py

import sys
import pybithumb
from PyQt5.QtWidgets import *
from PyQt5 import uic
from PyQt5.QtCore import *

form_class = uic.loadUiType("coin.ui")[0]

class MyWindow(QMainWindow, form_class) :
    def __init__(self) :
        super().__init__()
        self.setupUi(self)
        self.btn_close.clicked.connect(self.btn_closed)

    def btn_closed(self) :
        exit()

app = QApplication(sys.argv)
win = MyWindow()
win.show()
app.exec_()

윈도우 창 아이콘 변경

iconfind

5,525,000+ free and premium vector icons - Iconfinder