[NUI] sync with https://github.com/nui-dali/NUITizenGallery
[platform/core/csapi/tizenfx.git] / test / NUITizenGallery / Examples / ButtonTest / ButtonTest6.cs
1 using System;
2 using Tizen.NUI;
3 using Tizen.NUI.Components;
4
5 namespace NUITizenGallery
6 {
7     internal class ButtonTest6 : IExample
8     {
9         private Window window;
10
11         public void Activate()
12         {
13             Console.WriteLine($"@@@ this.GetType().Name={this.GetType().Name}, Activate()");
14
15             window = NUIApplication.GetDefaultWindow();
16             window.GetDefaultNavigator().Push(new ButtonTest6Page());
17         }
18         public void Deactivate()
19         {
20             Console.WriteLine($"@@@ this.GetType().Name={this.GetType().Name}, Deactivate()");
21             window.GetDefaultNavigator().Pop();
22         }
23     }
24 }