7 types derived from Transform
Microsoft.Maui.Controls (7)
Shapes\CompositeTransform.cs (1)
5
public sealed class CompositeTransform :
Transform
Shapes\MatrixTransform.cs (1)
5
public class MatrixTransform :
Transform
Shapes\RotateTransform.cs (1)
7
public class RotateTransform :
Transform
Shapes\ScaleTransform.cs (1)
5
public class ScaleTransform :
Transform
Shapes\SkewTransform.cs (1)
7
public class SkewTransform :
Transform
Shapes\TransformGroup.cs (1)
9
public sealed class TransformGroup :
Transform
Shapes\TranslateTransform.cs (1)
5
public class TranslateTransform :
Transform
10 references to Transform
Microsoft.Maui.Controls (9)
Shapes\Path.cs (6)
29
BindableProperty.Create(nameof(RenderTransform), typeof(
Transform
), typeof(Path), null,
41
public
Transform
RenderTransform
44
get { return (
Transform
)GetValue(RenderTransformProperty); }
70
(oldValue as
Transform
).PropertyChanged -= (bindable as Path).OnTransformPropertyChanged;
75
(newValue as
Transform
).PropertyChanged += (bindable as Path).OnTransformPropertyChanged;
91
if (args.PropertyName ==
Transform
.ValueProperty.PropertyName)
Shapes\Transform.cs (1)
10
BindableProperty.Create(nameof(Value), typeof(Matrix), typeof(
Transform
), new Matrix());
Shapes\TransformCollection.cs (1)
6
public sealed class TransformCollection : ObservableCollection<
Transform
>
Shapes\TransformGroup.cs (1)
70
foreach (
Transform
child in Children)
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Extensions\TransformExtensions.cs (1)
8
public static SKMatrix ToSkia(this
Transform
transform)