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

    379 2021-10-08 《Qt6 QML Book》
    Fragment Shaders Setting up the scene A red shader A red shader with texture The red channel property The red channel animated Baking Fragment Shaders The fragment shader ...
  • 你好世界(Hello World)

    你好世界(Hello World) 你好世界(Hello World) 为了测试你的安装,我们创建一个简单的应用程序hello world.打开Qt Creator并且创建一个Qt Quick UI Project(File->New File 或者 Project-> Qt Quick Project -> Qt Quick UI)并且给项目取名 ...
  • JS对象(JS Objects)

    JS对象(JS Objects) JS对象(JS Objects) 在使用JS工作时,有一些对象和方法会被频繁的使用。下面是它们的一个小的集合。 Math.floor(v),Math.ceil(v),Math.round(v) - 从浮点数获取最大,最小和随机整数 Math.random() - 创建一个在0到1之间的随机数 Object.key...
  • 片段着色器(Fragement Shader)

    片段着色器(Fragement Shader) 片段着色器(Fragement Shader) 片段着色器调用每个需要渲染的像素。我们将开发一个红色透镜,它将会增加图片的红色通道的值。 配置场景(Setting up the scene) 首先我们配置我们的场景,在区域中央使用一个网格显示我们的源图片(source image)。 impor...
  • Introduction

    630 2021-10-08 《Qt6 QML Book》
    Introduction Introduction The Qt for Python project provides the tooling to bind C++ and Qt to Python, and a complete Python API to Qt. This means that everything that you can d...
  • Acknowledgements

    781 2021-10-08 《Qt6 QML Book》
    Acknowledgements History Acknowledgements This book would not have been possible to create without the kind sponsorship from The Qt Company . It is a privilege to be able to wo...
  • Qt for Python

    732 2021-10-08 《Qt6 QML Book》
    Qt for Python Qt for Python This chapter describes the PySide6 module from the Qt for Python project. You will learn how to install it and how to leverage QML together with Pyth...
  • 动态加载组件(Loading Components Dynamically)

    动态加载组件(Loading Components Dynamically) 动态加载组件(Loading Components Dynamically) 动态加载QML不同组成部分最简单的方法是使用加载元素项(Loader element)。它作为一个占位符项用来加载项。项的加载通过资源属性(source property)或者资源组件(sourc...
  • 获取界面上的节点信息

    获取界面上的节点信息 QML节点信息 QML节点布局相交状态 QML节点信息 QML节点布局相交状态 获取界面上的节点信息 QML节点信息 节点信息查询 API 可以用于获取节点属性、样式、在界面上的位置等信息。 最常见的用法是使用这个接口来查询某个节点的当前位置,以及界面的滚动位置。 示例代码: const query =...
  • Loading Components Dynamically

    638 2021-10-08 《Qt6 QML Book》
    Loading Components Dynamically Connecting Indirectly Binding Indirectly Loading Components Dynamically The easiest way to dynamically load different parts of QML is to use the...