在 qt Creator 中运行 .ui 文件

发布于 2024-11-14 09:56:08 字数 136 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

音盲 2024-11-21 09:56:08

ui 文件必须添加到 .pro 文件的 FORMS 部分。

FORMS+=yourfile.ui

构建步骤使用 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.

FORMS+=yourfile.ui

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 becomes ui_yourfile.h).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文