Brush.RelativeTransform Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets or sets the transformation that is applied to the brush using relative coordinates.
Assembly: System.Windows (in System.Windows.dll)
XMLNS for XAML: Not mapped to an xmlns.
<brush> <brush.RelativeTransform> singleTransform </brush.RelativeTransform> </brush>
XAML Values
Value | Description |
|---|---|
singleTransform | Exactly one object element for an object that derives from Transform. This can be one of the following: RotateTransform, ScaleTransform, SkewTransform, TranslateTransform, MatrixTransform, TransformGroup. By using a TransformGroup here, you can apply multiple transforms by defining child object elements of the TransformGroup. See XAML Values section for TransformGroup. |
Property Value
Type: System.Windows.Media.TransformThe transformation that is applied to the brush using relative coordinates. The default value is null.
Dependency property identifier field: RelativeTransformProperty
This property is especially useful when you want to rotate, scale, skew, or otherwise transform a brush about its center, but you don't know the size of the area painted with the brush, or you are using the same brush to paint different areas with different sizes.