书栈网 · BookStack 本次搜索耗时 0.012 秒,为您找到 226 个相关结果.
  • JavaScript

    JavaScript JavaScript JavaScript是web客户端开发的通用语言。基于node js它也开始引导web服务器的开发。因此它使非常适合在声明式QML语言上添加的命令性语言。QML本身作为一个申明式语言用于表达用户界面层次,但是这仅限于表达操作。有时你需要一个方法表达业务,使用JavaScript来完成。 注意 在Qt社...
  • Summary

    400 2021-10-08 《Qt6 QML Book》
    Summary Summary In this chapter, we have looked at creating QML elements dynamically. This lets us create QML scenes freely, opening the door for user configurable and plug-in b...
  • 总结(Summary)

    总结(Summary) 总结(Summary) 插件的创建非常简单,但是它可以复用,并且为不同的应用程序扩展类型。使用创建的插件是非常灵活的解决方案。例如你可以只使用qmlscene 开始创建UI。打开CityUI项目文件夹,从qmlscene 的main.qml 开始。我真的鼓励大家使用与qmlscene 一起工作的方式写应用程序。对于UI开发者,...
  • 插件内容(Plugin Content)

    插件内容(Plugin Content) 插件内容(Plugin Content) 插件是一个已定义接口的库,它只在需要时才被加载。这与一个库在程序启动时被链接和加载不同。在QML场景下,这个接口叫做QQmlExtensionPlugin 。我们关心其中的两个方法initializeEngine() 和registerTypes() 。当插件被加载时...
  • 通过HTTP服务UI(Serving UI via HTTP)

    通过HTTP服务UI(Serving UI via HTTP) 11.1.1 网络组件(Networked Components) 通过HTTP服务UI(Serving UI via HTTP) 通过HTTP加载一个简单的用户界面,我们需要一个web服务器,它为UI文件服务。但是首先我们需要有用户界面,我们在项目里创建一个创建了红色矩形框的main...
  • Hello World

    766 2021-10-08 《Qt6 QML Book》
    Hello World Hello World To test your installation, we will create a small hello world application. Please, open Qt Creator and create a Qt Quick UI Project ( File ‣ New File or ...
  • 模板(Templating)

    模板(Templating) 模板(Templating) 当使用HTML项目时,通常需要使用模板驱动开发。服务器使用模板机制生成代码在服务器端对一个HTML根进行扩展。例如一个照片列表的列表头将使用HTML编码,动态图片链表将会使用模板机制动态生成。通常这也可以使用QML解决,但是仍然有一些问题。 首先,HTML开发者这样做的原因是为了克服HTM...
  • Limitations

    406 2021-10-08 《Qt6 QML Book》
    Limitations Limitations At the moment, there are some things that are not easily available. One of them is that you cannot easily create QML plugins using Python. Instead you ne...
  • Summary

    379 2021-10-08 《Qt6 QML Book》
    Summary Summary This concludes our chapter about QML networking. Please bear in mind Qt has on the native side a much richer networking API as on the QML side currently. But the...
  • 视图层

    视图层 View 视图层 View 框架的视图层由 QML 与 QSS 编写,由组件来进行展示。 将逻辑层的数据反应成视图,同时将视图层的事件发送给逻辑层。 QML(QQ Markup language) 用于描述页面的结构。 QS(QQ Script) 是小程序的一套脚本语言,结合 QML ,可以构建出页面的结构。 QSS(QQ Style...