在 qt Creator 中运行 .ui 文件
我在 Qt 设计器中创建了一个小部件。生成 .ui 文件后,现在我想在 qt Creator 中编译它。 .ui 文件已打开,但运行、构建、调试等按钮未启用。我如何在 qt Creator 中运行它?创建项目并将 .ui 文件粘贴到项目目录中不起作用。谢谢。
I created a widget in Qt designer. After generating .ui file , now I want to compile it in qt creator. The .ui file is opened but run, build, debug .etc button are not enabled. How can I run this in qt creator? Creating a project and pasting .ui file into the project directory doesn't work. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ui 文件必须添加到 .pro 文件的
FORMS
部分。构建步骤使用 Qt 目录中的
/bin/uic
命令(因此您可以想象从 IDE 外部的命令行手动执行此操作)将 .ui 转换为 .h 和 . cpp 文件(yourfile.ui
变为ui_yourfile.h
)。The ui file must be added to the
FORMS
section of the .pro file.The build step uses the
/bin/uic
command in the Qt directory (so you could conceivably do this manually from the command line outside of the IDE) to convert the .ui into a .h and a .cpp file (yourfile.ui
becomesui_yourfile.h
).