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
- javascript
- flutter
- swift
- ASP
- 맛집
- PyQt5
- 유니티
- IOS
- 함수
- mssql
- PyQt
- urllib
- sqlite
- MS-SQL
- node.js
- 라즈베리파이
- pandas
- tensorflow
- 다이어트
- 리눅스
- ubuntu
- 날짜
- MySQL
- PER
- GIT
- Linux
- port
- Excel
- python
- Unity
Archives
목록PyQt] (1)
아미(아름다운미소)
python PyQt에서 QCalendarWidget을 사용하여 날짜선택하기
PyQt에서 QCalendarWidget을 사용하여 날짜선택하기 def selectDates(self): self.dateWindow = QWidget() self.cal = QCalendarWidget(self) self.cal.clicked[QtCore.QDate].connect(self.showDate) self.hbox = QHBoxLayout() self.hbox.addWidget(self.cal) self.dateWindow.setLayout(self.hbox) self.dateWindow.setGeometry(300, 300, 350, 300) self.dateWindow.setWindowTitle('Calendar') self.dateWindow.show() def showDate(self..
랭귀지/python
2018. 12. 18. 15:51