示例#1
0
 public void Deactivate()
 {
     Console.WriteLine($"@@@ this.GetType().Name={this.GetType().Name}, Deactivate()");
     animation.Clear();
     page.Unparent();
     page.Dispose();
 }
示例#2
0
文件: Test1.cs 项目: wonrst/TizenFX
 void PoppedEvent(object obj, PoppedEventArgs ev)
 {
     if (ev.Page == page)
     {
         animation.Clear();
         animation = null;
         window    = null;
         page.Dispose();
         page              = null;
         navigator.Popped -= PoppedEvent;
         navigator         = null;
     }
 }