コード例 #1
0
ファイル: LabelTest5.cs プロジェクト: rookiejava/TizenFX
        public void Activate()
        {
            Console.WriteLine($"@@@ this.GetType().Name={this.GetType().Name}, Activate()");

            window    = NUIApplication.GetDefaultWindow();
            page      = new LabelTest5Page();
            navigator = window.GetDefaultNavigator();

            navigator.Push(page);
        }
コード例 #2
0
ファイル: LabelTest5.cs プロジェクト: rookiejava/TizenFX
 public void Deactivate()
 {
     Console.WriteLine($"@@@ this.GetType().Name={this.GetType().Name}, Deactivate()");
     navigator.Pop();
     page = null;
 }