yuvi
yuvi

Reputation: 1092

How to change window title in Qt Creator?

Please tell me How to change window title from MainWindow or Dialog to other name in Qt Creator?

Upvotes: 2

Views: 1868

Answers (1)

Rahul Tripathi
Rahul Tripathi

Reputation: 172438

You may try like this:

void    QWidget::setWindowTitle ( const QString & )

Also check this documentation

Upvotes: 1

Related Questions