summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT')
-rw-r--r--Xamarin.Forms.Platform.WinRT/ViewToRendererConverter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.WinRT/ViewToRendererConverter.cs b/Xamarin.Forms.Platform.WinRT/ViewToRendererConverter.cs
index 1c078d93..2d8a4f90 100644
--- a/Xamarin.Forms.Platform.WinRT/ViewToRendererConverter.cs
+++ b/Xamarin.Forms.Platform.WinRT/ViewToRendererConverter.cs
@@ -66,7 +66,7 @@ namespace Xamarin.Forms.Platform.WinRT
_view.IsInNativeLayout = false;
var content = Content as FrameworkElement;
- content.Arrange(new Rect(0, 0, finalSize.Width, finalSize.Height));
+ content.Arrange(new Rect(_view.X, _view.Y, _view.Width, _view.Height));
return finalSize;
}