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
													
											
												
												- sqlite
- 유니티
- PyQt
- flutter
- python
- 맛집
- ASP
- node.js
- swift
- urllib
- 함수
- IOS
- 날짜
- Unity
- GIT
- javascript
- mssql
- ubuntu
- 라즈베리파이
- port
- MS-SQL
- MySQL
- PER
- tensorflow
- Excel
- Linux
- 다이어트
- pandas
- 리눅스
- PyQt5
													Archives
													
											
											
											
											목록messagebox (1)
아미(아름다운미소)
PyQt5 messagebox# -*- coding: utf-8 -*- import sys from PyQt5.QtWidgets import QApplication, QWidget, QPushButton, QMessageBox from PyQt5.QtGui import QIcon from PyQt5.QtCore import pyqtSlot class App(QWidget): def __init__(self): super().__init__() self.title = 'PyQt5 messagebox' self.left = 10 self.top = 10 self.width = 320 self.height = 200 self.initUI() def initUI(self): self.setWindowTitle(..
				랭귀지/python
				
				2018. 12. 17. 11:07