27 Star 46 Fork 19

PESCMS / PESCMS Login GUI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dialog.py 442 Bytes
一键复制 编辑 原始数据 按行查看 历史
PESCMS 提交于 2015-08-20 18:59 . 修复弹窗提示信息
# -*- coding: utf-8 -*-
#弹窗
import sys
from PyQt5.QtWidgets import (QApplication, QDialog, QMessageBox)
class Dialog(QDialog):
def __init__(self, parent=None):
super(Dialog, self).__init__(parent)
def infoMsg(self, msg):
reply = QMessageBox.information(self,
"系统提示", msg)
if __name__ == '__main__':
app = QApplication(sys.argv)
dialog = Dialog()
sys.exit(app.exec_())
Python
1
https://gitee.com/fallBirds/PESCMS-Login-GUI.git
git@gitee.com:fallBirds/PESCMS-Login-GUI.git
fallBirds
PESCMS-Login-GUI
PESCMS Login GUI
master

搜索帮助