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