Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 3.3 KB

uielement_rendertransform.md

File metadata and controls

48 lines (32 loc) · 3.3 KB
-api-id -api-type
P:Windows.UI.Xaml.UIElement.RenderTransform
winrt property

Windows.UI.Xaml.UIElement.RenderTransform

-description

Gets or sets transform information that affects the rendering position of a UIElement.

-xaml-syntax

<uiElement>
  <uiElement.RenderTransform>
    singleTransform
  </uiElement.RenderTransform>
</uiElement>

-xaml-values

singleTransform
singleTransformExactly one object element for an object that derives from Transform. This is typically one of the transforms: RotateTransform, ScaleTransform, SkewTransform, TranslateTransform, MatrixTransform, or TransformGroup. By using TransformGroup here, you can apply multiple transforms by defining child object elements of the TransformGroup. See the "XAML Values" section for TransformGroup. Also, custom transforms might derive from MatrixTransform.
## -property-value Describes the specifics of the desired render transform. The default value is null.

-remarks

You can animate a transform, if you target sub-properties of the specific transform being used that take Double values. Or you can use ObjectAnimationUsingKeyFrames to cycle through distinct transforms. Classes such as QuarticEase show some example XAML.

If you do animate RenderTransform, make sure there is an existing starting Transform value, even if it is all at default values. You can't animate a RenderTransform value that is initially null.

The value of RenderTransform is overridden by PointerDownThemeAnimation and PointerUpThemeAnimation.

-examples

This XAML defines a Matrix that provides data for a MatrixTransform applied to a rectangular shape as its RenderTransform. In this case, the matrix combines an offset (OffsetX and OffsetY) and a skew (M12). Note that this same effect could have been produced by combining a TranslateTransform and a SkewTransform; whether to use a single Matrix or combinations of discrete transforms (with TransformGroup) is a matter of coding style; the results are identical.

[!code-xamlmatrixtransform]

-see-also

TranslateTransform, XAML two-dimensional transforms sample