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
- MySQL
- Linux
- Excel
- sqlite
- port
- urllib
- mssql
- ubuntu
- 라즈베리파이
- PyQt5
- MS-SQL
- GIT
- tensorflow
- PER
- javascript
- PyQt
- IOS
- pandas
- 리눅스
- ASP
- flutter
- swift
- 함수
- node.js
- 유니티
- 날짜
- 맛집
- Unity
- 다이어트
- python
Archives
목록spinbox (1)
아미(아름다운미소)
How can I set default values to QDoubleSpinBoxpyqt spinbox set value from PyQt5.QtWidgets import * from PyQt5 import uic form_class = uic.loadUiType("test.ui")[0] class test(QMainWindow, form_class): def __init__(self): super().__init__() self.setupUi(self) self.price1.setValue(4000) if __name__ == "__main__": app = QApplication(sys.argv) testWindow = test() testWindow.show() app.exec_()
랭귀지/python
2018. 11. 13. 09:30