MatrixTransform Class
Definition
Creates an arbitrary affine matrix transformation that is used to manipulate objects or coordinate systems in a two-dimensional plane.
Equivalent WinUI class: Microsoft.UI.Xaml.Media.MatrixTransform.
public ref class MatrixTransform sealed : Transform
/// [Windows.Foundation.Metadata.Activatable(65536, Windows.Foundation.UniversalApiContract)]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Static(Windows.UI.Xaml.Media.IMatrixTransformStatics, 65536, Windows.Foundation.UniversalApiContract)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
/// [Windows.Foundation.Metadata.WebHostHidden]
class MatrixTransform sealed : Transform
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
/// [Windows.Foundation.Metadata.WebHostHidden]
/// [Windows.Foundation.Metadata.Activatable(65536, "Windows.Foundation.UniversalApiContract")]
/// [Windows.Foundation.Metadata.Static(Windows.UI.Xaml.Media.IMatrixTransformStatics, 65536, "Windows.Foundation.UniversalApiContract")]
class MatrixTransform sealed : Transform
[Windows.Foundation.Metadata.Activatable(65536, typeof(Windows.Foundation.UniversalApiContract))]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Static(typeof(Windows.UI.Xaml.Media.IMatrixTransformStatics), 65536, typeof(Windows.Foundation.UniversalApiContract))]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
[Windows.Foundation.Metadata.WebHostHidden]
public sealed class MatrixTransform : Transform
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
[Windows.Foundation.Metadata.WebHostHidden]
[Windows.Foundation.Metadata.Activatable(65536, "Windows.Foundation.UniversalApiContract")]
[Windows.Foundation.Metadata.Static(typeof(Windows.UI.Xaml.Media.IMatrixTransformStatics), 65536, "Windows.Foundation.UniversalApiContract")]
public sealed class MatrixTransform : Transform
Public NotInheritable Class MatrixTransform
Inherits Transform
<MatrixTransform .../>
- Inheritance
- Attributes
Windows 10 requirements
Device family |
Windows 10 (introduced in 10.0.10240.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v1.0)
|
Examples
This example transforms the position and skew of a rectangle using a MatrixTransform.
<Rectangle Width="100" Height="100" Fill="Red">
<Rectangle.RenderTransform>
<MatrixTransform Matrix="1,0,0,1,200,0">
</MatrixTransform>
</Rectangle.RenderTransform>
</Rectangle>
Constructors
MatrixTransform() |
Initializes a new instance of the MatrixTransform class. Equivalent WinUI constructor: Microsoft.UI.Xaml.Media.MatrixTransform.MatrixTransform. |
Properties
Dispatcher |
Gets the CoreDispatcher that this object is associated with. The CoreDispatcher represents a facility that can access the DependencyObject on the UI thread even if the code is initiated by a non-UI thread. Equivalent WinUI property: Microsoft.UI.Xaml.DependencyObject.Dispatcher. (Inherited from DependencyObject) |
Inverse |
Gets the inverse transformation of this GeneralTransform, if possible. Equivalent WinUI property: Microsoft.UI.Xaml.Media.GeneralTransform.Inverse. (Inherited from GeneralTransform) |
InverseCore |
Implements the behavior for return value of Inverse in a derived or custom GeneralTransform. Equivalent WinUI property: Microsoft.UI.Xaml.Media.GeneralTransform.InverseCore. (Inherited from GeneralTransform) |
Matrix |
Gets or sets the Matrix that defines this transformation. Equivalent WinUI property: Microsoft.UI.Xaml.Media.MatrixTransform.Matrix. |
MatrixProperty |
Identifies the Matrix dependency property. Equivalent WinUI property: Microsoft.UI.Xaml.Media.MatrixTransform.MatrixProperty. |
Methods
ClearValue(DependencyProperty) |
Clears the local value of a dependency property. Equivalent WinUI method: Microsoft.UI.Xaml.DependencyObject.ClearValue. (Inherited from DependencyObject) |
GetAnimationBaseValue(DependencyProperty) |
Returns any base value established for a dependency property, which would apply in cases where an animation is not active. Equivalent WinUI method: Microsoft.UI.Xaml.DependencyObject.GetAnimationBaseValue. (Inherited from DependencyObject) |
GetValue(DependencyProperty) |
Returns the current effective value of a dependency property from a DependencyObject. Equivalent WinUI method: Microsoft.UI.Xaml.DependencyObject.GetValue. (Inherited from DependencyObject) |
ReadLocalValue(DependencyProperty) |
Returns the local value of a dependency property, if a local value is set. Equivalent WinUI method: Microsoft.UI.Xaml.DependencyObject.ReadLocalValue. (Inherited from DependencyObject) |
RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback) |
Registers a notification function for listening to changes to a specific DependencyProperty on this DependencyObject instance. Equivalent WinUI method: Microsoft.UI.Xaml.DependencyObject.RegisterPropertyChangedCallback. (Inherited from DependencyObject) |
SetValue(DependencyProperty, Object) |
Sets the local value of a dependency property on a DependencyObject. Equivalent WinUI method: Microsoft.UI.Xaml.DependencyObject.SetValue. (Inherited from DependencyObject) |
TransformBounds(Rect) |
Transforms the specified bounding box and returns an axis-aligned bounding box that is exactly large enough to contain it. Equivalent WinUI method: Microsoft.UI.Xaml.Media.GeneralTransform.TransformBounds. (Inherited from GeneralTransform) |
TransformBoundsCore(Rect) |
Provides the means to override the TransformBounds behavior in a derived transform class. Equivalent WinUI method: Microsoft.UI.Xaml.Media.GeneralTransform.TransformBoundsCore. (Inherited from GeneralTransform) |
TransformPoint(Point) |
Uses this transformation object's logic to transform the specified point, and returns the result. Equivalent WinUI method: Microsoft.UI.Xaml.Media.GeneralTransform.TransformPoint. (Inherited from GeneralTransform) |
TryTransform(Point, Point) |
Attempts to transform the specified point and returns a value that indicates whether the transformation was successful. Equivalent WinUI method: Microsoft.UI.Xaml.Media.GeneralTransform.TryTransform. (Inherited from GeneralTransform) |
TryTransformCore(Point, Point) |
Provides the means to override the TryTransform behavior in a derived transform class. Equivalent WinUI method: Microsoft.UI.Xaml.Media.GeneralTransform.TryTransformCore. (Inherited from GeneralTransform) |
UnregisterPropertyChangedCallback(DependencyProperty, Int64) |
Cancels a change notification that was previously registered by calling RegisterPropertyChangedCallback. Equivalent WinUI method: Microsoft.UI.Xaml.DependencyObject.UnregisterPropertyChangedCallback. (Inherited from DependencyObject) |