如何在 qt Creator 中使用现有的 qml 文件?
我从诺基亚网站下载了一些 qml 模板。现在我想测试它们。如何将 qml 文件导入到我的空项目中?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现有的 .qml 文件'(第二个)
而不是“生成主 .qml”
文件”(第一个)。
an existing .qml file' (second one)
instead of 'Generate a main .qml
file' (first one).
我已经解决了。
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.