티스토리 뷰
PySide - QMessageBox
#!/usr/bin/python # -*- coding: utf-8 -*- import sys import PySide from PySide.QtGui import QApplication from PySide.QtGui import QMessageBox # Create the application object app = QApplication(sys.argv) # Create a simple dialog box msgBox = QMessageBox() msgBox.setText("Hello World - using PySide version " + PySide.__version__) msgBox.exec_() | cs |
'Programming > Python' 카테고리의 다른 글
(PEP 8) Style Guide for Python Code (0) | 2016.08.15 |
---|---|
Python Modules (0) | 2016.01.16 |
Scapy 사용하기 (0) | 2015.04.11 |
Scapy 설치하기 (0) | 2015.04.11 |
PySide - Combine (Show, About, Close) (0) | 2015.04.07 |
PySide - Show Licence (File Open) (0) | 2015.04.07 |
PySide - About Box (0) | 2015.04.07 |
PySide - Close Button (0) | 2015.04.05 |
OS X에서 PySide 설치하기 (0) | 2015.04.05 |
쉘 스크립트(shell script)의 시작 #!(shebang) (0) | 2014.11.14 |
댓글