def __init__(self, parent, title, message):
super(InformationMessageBox, self).__init__(parent)
self.setAttribute(Qt.WA_DeleteOnClose, True)
self.setIcon(QMessageBox.Information)
self.setWindowTitle(title)
self.setText(message)
self.addButton(_("OK"), QMessageBox.AcceptRole)
评论列表
文章目录