如何在Qt,python中更改或删除标题QMessageBox中的图标。我有下一个鳕鱼:
msgBox = QtGui.QMessageBox(QtGui.QMessageBox.Information, ' ', 'Completed',
buttons=QtGui.QMessageBox.Yes)
msgBox.setWindowFlags(QtCore.Qt.FramelessWindowHint |
QtCore.Qt.WindowTitleHint)
msgBox.exec_()
当msgBox出现在监视器中时,标题中没有图标和文本,但在任务栏上,我看到标准图标Windows。 它并不美丽。
你可以
这样做:
msgBox.setWindowIcon(QtGui.QIcon('PathToIcon/icon.png'))