要调节所有QMessageBox的大小,试了调节QMessageBox的QWidget的height、width,还有用QMessageBox.setGeometry等方法,均无效。后经尝试,有效的方法是添加如下样式:
QLabel#qt_msgbox_label{
min-width: 200px;
min-height: 80px;
font-size: 15px;
}
QLabel#qt_msgboxex_icon_label{
min-width: 50px;
min-height: 80px;
}
前者是QMessageBox中左边图标的大小,后者是消息框的大小。