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