qt5
程序员文章站
2022-05-28 11:52:35
...
qt5中文乱码
添加#include <qtextcodec.h>
QTextCodec * codec = QTextCodec::codecForName(“GBK”);
btn -> setText*(codec->toUnicode(“按钮1”));
**
我的代码:
**加粗样式
QPushButton * btn = new QPushButton;
btn -> setParent(this);
btn -> setFixedSize(100,30);
QTextCodec *codec = QTextCodec::codecForName(“GBK”);//修改这两行
btn -> setText(codec->toUnicode(“按钮1”));
QPushButton * btn2 = new QPushButton(codec->toUnicode(“按钮2”),this);
btn2 -> move(110,0);
resize(600,400);
setWindowTitle(codec->toUnicode(“窗口1”));
//固定窗口大小
setFixedSize(600,400);
**结果:**
上一篇: qt5 鼠标无动作时进入屏保