QAbstractButton * QMessageBox::button ( StandardButton which ) const
这个函数返回messagebox上面的按钮指针,例如:
QPushButton *okButton = (QPushButton*)messageBox->button(QMessageBox::Ok);
okButton->setShotCut(QKeySequence(tr("Ctrl+P")));
能详细点吗?如果是要在button上实现功能,可以在资源视图下点击对话框,然后再双击button按钮添加代码