from PySide2.QtWidgets import * def fun(): print("버튼이 클릭되었습니다") app=QApplication() btn=QPushButton("btn") btn.clicked.connect(fun) ...
確定! 回上一頁