Exemplo n.º 1
0
        public void Activate()
        {
            Console.WriteLine($"@@@ this.GetType().Name={this.GetType().Name}, Activate()");
            window = NUIApplication.GetDefaultWindow();

            page = new SetColorTestPage();
            window.GetDefaultNavigator().Push(page);
        }
Exemplo n.º 2
0
 public void Deactivate()
 {
     Console.WriteLine($"@@@ this.GetType().Name={this.GetType().Name}, Deactivate()");
     window.GetDefaultNavigator().Pop();
     page = null;
 }