本人从现在开始收集Qt error及解决方案,如遇到棘手的Qt相关问题 请发至邮箱2472322319@qq.com
或在本文下留言 我们共同探讨解决问题
fatal error C1057: 宏展开中遇到意外的文件结束
检查新加代码中是否出现缺少括号的情况!!!
Designer: An error has occurred while reading the UI file at line 1, column 0: Premature end of document.
Qt下动态加载对话框(ui文件)
QUiLoader ul;
QFile file("a.ui");
QWidget * wd = ul.load(&file);
if(wd)
wd->show();
1.将.ui文件放到debug目录下
2.使用资源模式加载ui文件
QFile file(":/*.ui");