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
- GIT
- node.js
- 날짜
- Excel
- ASP
- 유니티
- Linux
- 리눅스
- urllib
- 다이어트
- pandas
- 함수
- mssql
- PyQt
- PyQt5
- 맛집
- 라즈베리파이
- ubuntu
- Unity
- MS-SQL
- javascript
- PER
- MySQL
- python
- tensorflow
- flutter
- IOS
- sqlite
- port
- swift
Archives
목록2018/11/26 (1)
아미(아름다운미소)
Python PyQt5 combobox 예제
Python PyQt5 combobox import sys from PyQt5 import QtCore, QtWidgets from PyQt5.QtWidgets import QMainWindow, QLabel, QGridLayout, QWidget, QComboBox from PyQt5.QtCore import QSize, QRect class ExampleWindow(QMainWindow): def __init__(self): QMainWindow.__init__(self) self.setMinimumSize(QSize(300, 300)) self.setWindowTitle("PyQt5 Combobox example") centralWidget = QWidget(self) self.setCentralW..
랭귀지/python
2018. 11. 26. 11:01