Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- urllib
- Linux
- Excel
- 라즈베리파이
- tensorflow
- swift
- PER
- javascript
- MySQL
- Unity
- pandas
- ubuntu
- 날짜
- 다이어트
- PyQt
- MS-SQL
- node.js
- python
- IOS
- port
- 리눅스
- ASP
- 맛집
- sqlite
- mssql
- PyQt5
- GIT
- 유니티
- 함수
- flutter
Archives
목록2018/12/13 (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