1 Star 0 Fork 2

Marco/XmlTreeView_QT

forked from py-zxj-free/XmlTreeView_QT 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 607 Bytes
一键复制 编辑 原始数据 按行查看 历史
py-zxj-free 提交于 2021-05-22 13:40 . 'V1.0'
#include "view/mainview.h"
#include <QtGui/QApplication>
#include <QTranslator>
#include <QTextCodec>
#pragma warning(disable:4099)
int main(int argc, char * argv[])
{
QApplication app(argc, argv);
QTranslator translator;
translator.load(":/languages/xmlTreeView_cn.qm");
app.installTranslator(&translator);
//local string style support
QTextCodec::setCodecForLocale(QTextCodec::codecForLocale());
QTextCodec::setCodecForCStrings(QTextCodec::codecForLocale());
QTextCodec::setCodecForTr(QTextCodec::codecForLocale());
MainWindow w;
w.show();
return app.exec();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/nanjingziyue/xml-tree-view_-qt.git
[email protected]:nanjingziyue/xml-tree-view_-qt.git
nanjingziyue
xml-tree-view_-qt
XmlTreeView_QT
master

搜索帮助