C

PathLine QML 类型

定义了一条直线。 更多...

导入声明import QtQuick
Qt Quick Ultralite 1.8

属性

  • x : real
  • y : real

详细信息

以下示例创建了一条从 0,100 到 200,100 的直线路径

import QtQuick
import QtQuick.Shapes
Rectangle {
    width: 300
    height: 300
    Shape {
        ShapePath {
            strokeColor: "black"
            startX: 0; startY: 100
            PathLine { x: 200; y: 100 }
        }
    }
}

注意: 要导入 QtQuick.Shapes,您必须将 Qul::Shapes 模块链接到您的项目中。有关更多信息,请参阅 Qt Quick Ultralite Shapes QML 类型

另请参阅 PathPathQuadPathCubicPathArcPathSvgPathMove

属性文档

x : real

y : real

定义了线的终点。


在特定的 Qt 许可证下可用。
了解更多。