[NUI] Fix NUITizenGallery to run on Ubuntu VS-Code debugging
[platform/core/csapi/tizenfx.git] / test / NUITizenGallery / Examples / WebViewTest / WebViewTest1.cs
1 using System;
2 using Tizen.NUI;
3 using Tizen.NUI.Components;
4
5 namespace NUITizenGallery
6 {
7     internal class WebViewTest1 : IExample
8     {
9         private Window window;
10         public void Activate()
11         {
12             window = NUIApplication.GetDefaultWindow();
13             window.GetDefaultNavigator().Push(new WebViewTest1Page());
14         }
15         public void Deactivate()
16         {
17             window.GetDefaultNavigator().Pop();
18         }
19     }
20 }
21