Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Qt5 生成的 UI/表单文件是否与 Qt4 向后兼容?如,我可以获取源文件、头文件和 UI 文件并使用 Qt4 重新编译而不会出现问题吗?
在 Qt 5 中生成的文件uic将具有#include <QtWidgets/QFoo>,这在 Qt 4 中当然不起作用。
uic
#include <QtWidgets/QFoo>
还是您在谈论.ui由 Qt Designer / Creator 生成的文件?相反,这些将在没有更改的情况下工作(当然,模使用 Qt 5-only 或 Qt 4-only 类)。
.ui