툴바1 아이콘 툴바메뉴 만들기 오늘은 아이콘 툴바를 만드는 방법에 대해 알아보려고해요import sysfrom PyQt5.QtWidgets import QApplication, QMainWindow, QAction, qAppfrom PyQt5.QtGui import QIconclass Example(QMainWindow): def __init__(self): super().__init__() self.initUI() def initUI(self): # 종료 액션 생성 exitAct = QAction(QIcon('exit.png'), 'Exit', self) exitAct.setShortcut('Ctrl+Q') # 단축키 설정 exitAct.trig.. 2024. 5. 7. 이전 1 다음