C
SafePicture QML 类型
提供了一种 QML 图像类型,可以在 Qt 安全渲染器运行时进行渲染。 更多...
导入语句 | import Qt.SafeRenderer 2.0 |
属性
- color : 颜色
- fillColor : 颜色
- height : 实数
- objectName : 字符串
- opacity : 实数
- source : url
- width : 实数
- x : 实数
- y : 实数
详细描述
SafePicture指示器显示安全渲染器运行时颜色化的可缩放矢量 QPicture。
以下代码提供了如何使用 SafePicture 类型的示例
SafePicture { id: iconCoolant objectName: "iconCoolant" width: 30 height: 30 color: "#e41e25" fillColor: "white" // optional, but recommended to use fillColor for controlled background color source: "qrc:/iso-icons/iso_grs_7000_4_2426.dat" }
属性文档
此属性存储指示器绘制到的 fillColor。它基本上是指示器的一个局部背景颜色。默认值为 "transparent"。
注意: 如果您使用输出验证功能,请勿使用默认值 "transparent"。相反,定义一个不透明背景颜色。有关更多信息,请参阅 Qt 安全渲染器输出验证。
此属性存储项的不透明度。不透明度指定为介于 0.0(完全透明)和 1.0(完全不透明)之间的数字。默认值为 1.0。有关更多信息,请参阅 不透明度属性。
此属性指定要使用的图标的 URL。URL 必须指向包含 QPicture 数据的文件。例如
source: "qrc:/iso-icons/iso_grs_7000_4_0238.dat"
在某些Qt许可证下可用。
了解更多。