From 111acf9908795fb05e146be6c17b800c599dcd61 Mon Sep 17 00:00:00 2001 From: Kangho Hur Date: Thu, 1 Jul 2021 21:18:54 +0900 Subject: [PATCH] Bump to latest - Added GestureManager.Tizen.cs (#1489) - Set handler to shimmed handler so it doesn't get reshimmed (#1483) - Turn XamlC on by default (#1422) - and so on --- src/Compatibility/Core/src/Tizen/Platform.cs | 2 ++ .../GestureManager/GestureManager.Tizen.cs | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 src/Controls/src/Core/Platform/GestureManager/GestureManager.Tizen.cs diff --git a/src/Compatibility/Core/src/Tizen/Platform.cs b/src/Compatibility/Core/src/Tizen/Platform.cs index 65b892713830..662de0f8d9d2 100644 --- a/src/Compatibility/Core/src/Tizen/Platform.cs +++ b/src/Compatibility/Core/src/Tizen/Platform.cs @@ -85,6 +85,8 @@ internal static IVisualElementRenderer CreateRenderer(VisualElement element) vh.SetParent(nvh); } renderer = new HandlerToRendererShim(vh); + element.Handler = handler; + SetRenderer(element, renderer); } } renderer.SetElement(element); diff --git a/src/Controls/src/Core/Platform/GestureManager/GestureManager.Tizen.cs b/src/Controls/src/Core/Platform/GestureManager/GestureManager.Tizen.cs new file mode 100644 index 000000000000..344c17b7cce6 --- /dev/null +++ b/src/Controls/src/Core/Platform/GestureManager/GestureManager.Tizen.cs @@ -0,0 +1,18 @@ +#nullable enable + +using System; + +namespace Microsoft.Maui.Controls.Platform +{ + class GestureManager : IDisposable + { + public GestureManager(IViewHandler handler) + { + //TODO: Need to impl + } + + public void Dispose() + { + } + } +}