QT标题显示中文和messagebox头文件

QT标题显示中文和messagebox头文件

QT默认的编码(unicode)是不能显示中文的,可能由于windows的默认编码的问题,windows默认使用(GBK/GB2312/GB18030

),所以需要来更改QT程序的编码来解决中文显示的问题
方法一:
 w.setWindowTitle(QString::fromUtf8("控制主窗口"));
//多窗口swtich设计 程序
#include
#include "mainwindow.h"

#include"logindlg.h"
#include

//#include //为了显中文

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    mainwindow w;
    logindlg login;//creat object of logindlg
    //为了显中文
    login.setWindowTitle(QString::fromUtf8("登陆窗口"));

    if(login.exec()==QDialog::Accepted)
    {
        w.show();
        w.setWindowTitle(QString::fromUtf8("控制主窗口"));
        return a.exec();
    }
    else
        return 0;
}


方法二:
可以在ui 的窗口设置那windowtitle 那设置相要的标题名字


用MessageBox:要加上头文件:
#include   //use QMessageBox  header file
QMessageBox::warning(this,tr("Warming"),tr("username or password error"),
                             tr("Yes"),tr("No"));

你可能感兴趣的:(QT)