C PathQuad QML 类型 定义具有控制点的二次 Bezier 曲线。 更多... 导入语句import QtQuick自Qt Quick Ultralite 1.8 所有成员列表,包括继承成员 属性 controlX : real controlY : real x : real y : real 详细说明 以下 QML 生成的路径如下所示 import QtQuick import QtQuick.Shapes Rectangle { width: 300 height: 300 Shape { ShapePath { strokeColor: "black" startX: 0; startY: 0 PathQuad { x: 200; y: 0; controlX: 100; controlY: 150 } } } } 注意:要导入 QtQuick.Shapes,您必须将 Qul::Shapes 模块链接到您的项目中。更多信息,请参阅 Qt Quick Ultralite Shapes QML 类型。 另请参阅:Path、PathCubic、PathLine、PathArc 和 PathSvg。 属性说明 controlX : real controlY : real 定义控制点的位置。 x : real y : real 定义曲线的终点。 在本节中的某些 Qt 许可下提供。了解更多。