C++ 如何设置 QMainWindow 标题

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/4549859/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-28 15:43:21  来源:igfitidea点击:

How to set QMainWindow title

c++qtqmainwindow

提问by houbysoft

How do I set the title of a QMainWindow?

如何设置 QMainWindow 的标题?

I tried googling and found setCaption(), but it appears it no longer works in Qt 4.

我尝试谷歌搜索并找到了 setCaption(),但它似乎不再适用于 Qt 4。

回答by Edward Strange

The method is setWindowTitle():

方法是setWindowTitle()

setWindowTitle(const QString &)

http://doc.qt.io/qt-4.8/qwidget.html#windowTitle-prop

http://doc.qt.io/qt-4.8/qwidget.html#windowTitle-prop