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

    366 2021-10-08 《Qt6 QML Book》
    Summary Summary In this chapter we have looked at Qt Quick Controls 2. They offer a set of elements that provide more high-level concepts than the basic QML elements. For most s...
  • 组件模板和样式

    组件模板和样式 组件模板 模板数据绑定 组件qml的slot 组件样式 外部样式类 使组件接受全局样式 组件模板和样式 类似于页面,自定义组件拥有自己的 qml 模板和 qss 样式。 组件模板 组件模板的写法与页面模板相同。组件模板与组件数据结合后生成的节点树,将被插入到组件的引用位置上。 在组件模板中可以提供一个 <slo...
  • Qt 6 Introduction

    961 2021-10-08 《Qt6 QML Book》
    Qt 6 Introduction Qt Quick Digesting a User Interface Qt 6 Introduction Qt Quick Qt Quick is the umbrella term for the user interface technology used in Qt 6. It was introduc...
  • 一个简单的模型(A simple model)

    一个简单的模型(A simple model) 一个简单的模型(A simple model) 一个典型的QML C++模型继承自QAbstractListModel ,并且最少需要实现data 和rowCount 函数。在这个例子中我们将使用由QColor 类提供的一系列SVG颜色名称并且使用我们的模型展示它们。数据被存储在QList<QStrin...
  • FileIO Implementation

    546 2021-10-08 《Qt6 QML Book》
    FileIO Implementation FileIO Implementation Remember the FileIO API we want to create should look like this. class FileIO : public QObject { ... Q_PROPE...
  • Porting from HTML5 Canvas

    668 2021-10-08 《Qt6 QML Book》
    Porting from HTML5 Canvas Spirograph Glowing Lines Porting from HTML5 Canvas Porting from an HTML5 canvas to a QML canvas is fairly easy. In this chapter we will look at the e...
  • Quick Starter

    558 2021-10-08 《Qt6 QML Book》
    Quick Starter Quick Starter This chapter provides an overview of QML, the declarative user interface language used in Qt 6. We will discuss the QML syntax, which is a tree of el...
  • Qt5介绍

    1.2 Qt5介绍 1.2.1 Qt Quick 1.2.2 Qt5用户界面开发示例 1.2 Qt5介绍 1.2.1 Qt Quick Qt Quick是Qt5界面开发技术的统称,是以下几种技术的集合: QML - 界面标记语言 JavaScript - 动态脚本语言 Qt C++ - 跨平台C++封装库 QML是与HT...
  • 转换(Transformation)

    转换(Transformation) 转换(Transformation) 画布有多种方式来转换坐标系。这些操作非常类似于QML元素的转换。你可以通过缩放(scale),旋转(rotate),translate(移动)来转换坐标系。与QML元素的转换不同的是,转换原点通常就是画布原点。例如,从中心点放大一个封闭的路径,你需要先将画布原点移动到整个封闭...
  • Building for Host Platform

    Building for Host Platform Building Projects with Qt Creator Opening Project to Edit Mode Adding a Custom Build Step <make install> Building the Project Qt Safe Renderer Binari...