[NUI] Fix NUITizenGallery to run on Ubuntu VS-Code debugging
[platform/core/csapi/tizenfx.git] / test / NUITizenGallery / Examples / TimePickerTest / TimePickerTest.cs
1 using System;
2 using Tizen.NUI;
3 using Tizen.NUI.Components;
4
5 namespace NUITizenGallery
6 {
7     internal class TimePickerTest : 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 TimePickerTestPage());
16
17         }
18         public void Deactivate()
19         {
20             Console.WriteLine($"@@@ this.GetType().Name={this.GetType().Name}, Deactivate()");
21             window.GetDefaultNavigator().Pop();
22         }
23     }
24 }