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