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