gpt4 book ai didi

qt - 什么决定了 QMessageBox 的默认标题?

转载 作者:行者123 更新时间:2023-12-04 20:02:38 28 4
gpt4 key购买 nike

我想更改默认值 QMessageBox别的东西的标题,这样我就不必打电话 setWindowTitle对于每个单独的消息框。

如何选择默认窗口标题?

最佳答案

最好的方法是子类化 QMessageBox ,例如:

class MyMessageBox : public QMessageBox
{
MyMessageBox() //<-- default constructor
{
setWindowTitle("Default title goes here"); //QMessageBox function
}
};

使用 MyMessageBox代码中无处不在。

关于qt - 什么决定了 QMessageBox 的默认标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5707116/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com