[NUI] Change for Size2D property to own internalSize2D which is cashed to prevent...
[platform/core/csapi/tizenfx.git] / test / NUITizenGallery / Examples / TapGestureTest / TapGestureTest4.cs
1 using System;
2 using Tizen.NUI;
3 using Tizen.NUI.Components;
4
5 namespace NUITizenGallery
6 {
7     internal class TapGestureTest4 : IExample
8     {
9         private Window window;
10         public void Activate()
11         {
12             Console.WriteLine($"@@@ this.GetType().Name={this.GetType().Name}, Activate()");
13
14             window = NUIApplication.GetDefaultWindow();
15             window.GetDefaultNavigator().Push(new TapGestureTest4Page());
16
17         }
18         public void Deactivate()
19         {
20             Console.WriteLine($"@@@ this.GetType().Name={this.GetType().Name}, Deactivate()");
21             window.GetDefaultNavigator().Pop();
22         }
23     }
24 }