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