Notice
Recent Posts
Recent Comments
Link
목록QWidget (1)
아미(아름다운미소)
Python PyQt5 click action on Qwidget ''' Created on 2018. 12. 10. @author: bhm ''' from PyQt5.QtWidgets import (QWidget, QApplication) import sys class MyWidget(QWidget): def mousePressEvent(self, event): print("clicked") app = QApplication(sys.argv) widget = MyWidget() widget.show() app.exec_()
랭귀지/python
2018. 12. 13. 09:30