QMessageBox
QtWidgets提供了一些默认的消息框 QMessageBox, 主要有123456789QMessageBox.question(self, 'message', 'Are you sure to quite?',QMessageBox.Yes, QMessageBox.No)QMessageBox.about(self,'About this', 'This is a test program')QMessageBox.warning(self,'warning','There is a warning',QMessageBox.Cancel)QMessageBox.information(self,'Information', 'This is an information')QMessageBox.critical(self, 'critical', 'error')
QMessageBox.question
|
|
点击关闭按钮时,产生一个消息窗口如下