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
- 라즈베리파이
- python
- sqlite
- Linux
- swift
- javascript
- Excel
- tensorflow
- PyQt5
- MS-SQL
- PyQt
- 리눅스
- ASP
- ubuntu
- 다이어트
- mssql
- flutter
- IOS
- PER
- 함수
- GIT
- node.js
- MySQL
- pandas
- 유니티
- 맛집
- port
- 날짜
- urllib
- 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