diff --git a/src/Core/src/Platform/Windows/TransformationExtensions.cs b/src/Core/src/Platform/Windows/TransformationExtensions.cs index 6b6c47be3870..94e238519a8f 100644 --- a/src/Core/src/Platform/Windows/TransformationExtensions.cs +++ b/src/Core/src/Platform/Windows/TransformationExtensions.cs @@ -27,6 +27,9 @@ public static void UpdateTransformation(this FrameworkElement frameworkElement, } else { + double anchorX = view.AnchorX; + double anchorY = view.AnchorY; + frameworkElement.RenderTransformOrigin = new global::Windows.Foundation.Point(anchorX, anchorY); frameworkElement.RenderTransform = new ScaleTransform { ScaleX = scaleX, ScaleY = scaleY };