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