Chinaunix首页 | 论坛 | 博客
  • 博客访问: 855292
  • 博文数量: 253
  • 博客积分: 6891
  • 博客等级: 准将
  • 技术积分: 2502
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-03 11:01
文章分类

全部博文(253)

文章存档

2016年(4)

2013年(3)

2012年(32)

2011年(184)

2010年(30)

分类: Python/Ruby

2011-06-22 10:02:36

create the alert dialog
  1. from PyQt4.QtGui import *
  2. from PyQt4.QtCore import *
  3. import sys

  4. app = QApplication(sys.argv)
  5. msg_box = QMessageBox(QMessageBox.Warning, "Alert", "Please configure the baseline!")
  6. msg_box.show()
  7. app.exec_()


ss
if the alert show when click some button, should show like this:

  1. msg_box = QMessageBox(QMessageBox.Warning, "Alert", "Please configure the baseline!")

  2. msg_box.exec_()



阅读(2878) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~