如何在 qt Creator 中使用现有的 qml 文件?

发布于 2024-11-18 01:47:42 字数 200 浏览 2 评论 0原文

我从诺基亚网站下载了一些 qml 模板。现在我想测试它们。如何将 qml 文件导入到我的空项目中?

模板位于此处 https://projects.developer.nokia.com/QMLTemplates

I download some qml templeates from nokia's website. Now i want to test them. How can i import qml file into my empty project?

Templeates are here https://projects.developer.nokia.com/QMLTemplates

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

|煩躁 2024-11-25 01:47:42
  1. 创建一个新的 Qt Quick 应用程序;
  2. 在向导中选择选项“导入”
    现有的 .qml 文件'(第二个)
    而不是“生成主 .qml”
    文件”(第一个)。
  3. 单击浏览按钮并选择您下载的 QML 文件。
  1. Create a new Qt Quick application;
  2. in the wizard choose option 'Import
    an existing .qml file' (second one)
    instead of 'Generate a main .qml
    file' (first one).
  3. Click on browse button and select your QML file you that downloaded.
高冷爸爸 2024-11-25 01:47:42

我已经解决了。

1)创建一个新的Qt Quick应用程序;

2) 在向导中选择选项“生成主 .qml 文件”(第一个)。

3)qml模板中的每个演示有两个文件夹。组件和示例。
然后打开并复制 example 文件夹下 main.qml 中的所有数据并将其粘贴到我们的新项目 main.qml

4) 现在在我们的新项目中编辑 main.qml ->删除“导入“../组件”作为 Comp”并在第二行写入“导入“组件”作为 Comp”。

5) 复制 qml 模板中的组件文件夹并将其粘贴到我们项目的 main.qml 文件附近

6) 运行

7) 如果示例文件夹下有额外的文件,请将它们全部复制并粘贴到我们新项目下的 main.qml 文件附近。

i have solved it.

1) Create a new Qt Quick application;

2) in the wizard choose option 'Generate a main .qml file' (first one).

3) There is two folder for each demo in qml templates. Component and example.
Then open and copy all data in main.qml under example folder and paste it to our new projects main.qml

4) Now edit main.qml in our new project -> delete 'import "../component" as Comp' and write 'import "component" as Comp' in second line.

5) Copy component folder in qml templates and paste it near to our project's main.qml file

6) Run

7)if there are extra file under example folder, copy all of them and paste near to main.qml file under our new project.

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