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