summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT
diff options
context:
space:
mode:
authorPaul DiPietro <pauldipietro@users.noreply.github.com>2017-10-18 10:56:24 -0400
committerRui Marinho <me@ruimarinho.net>2017-10-18 15:59:42 +0100
commit71b323bf9d9617e1a4c0f8609ee7945e1eb6dfc3 (patch)
tree5bc29c29464c5155b71fbe9f6dc9dff1be8c1403 /Xamarin.Forms.Platform.WinRT
parent96325698b80511cf549b0cb1455373d7e0011ff0 (diff)
downloadxamarin-forms-71b323bf9d9617e1a4c0f8609ee7945e1eb6dfc3.tar.gz
xamarin-forms-71b323bf9d9617e1a4c0f8609ee7945e1eb6dfc3.tar.bz2
xamarin-forms-71b323bf9d9617e1a4c0f8609ee7945e1eb6dfc3.zip
[UWP] Inherit from Panel on WrapperControl (#1204)
* [UWP] Inherit from Panel on WrapperControl * Fix typo
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 15124258..ac9df4a1 100644
--- a/Xamarin.Forms.Platform.WinRT/ViewToRendererConverter.cs
+++ b/Xamarin.Forms.Platform.WinRT/ViewToRendererConverter.cs
@@ -37,7 +37,7 @@ namespace Xamarin.Forms.Platform.WinRT
throw new NotSupportedException();
}
- class WrapperControl : Canvas
+ class WrapperControl : Panel
{
readonly View _view;