Dev/PyQt1 QAction QAction은 PyQt에서 메뉴 항목이나 툴바 버튼과 같은 사용자 인터페이스 요소를 정의하고 관리하는 데 사용되는 클래스입니다. QAction 객체는 일반적으로 사용자가 트리거할 수 있는 특정 작업(액션)을 나타내며, 이 작업은 메뉴에서 선택되거나 툴바 버튼이 클릭될 때 실행됩니다.UI, 동작을 코드작성from PyQt5.QtWidgets import QMainWindow, QAction, QApplication, qAppfrom PyQt5.QtGui import QIconimport sysclass Example(QMainWindow): def __init__(self): super().__init__() self.initUI() def initUI(self): .. 2024. 8. 11. 이전 1 다음