QMessageBox 사용 방법 (PyQt, PySide)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 import sys from PySide6.QtWidgets import QWidget, QApplication, QMessageBox, QPushButton, QVBoxLayout class MyForm(QWidget): def __init__(self, parent=None): QWidget.__init__(self, parent) button = QPushButton("Open MessageBox") button.clicked.connect(self.showMessageBox) main_layout = QVBoxLayo..