Example #1
0
 public PageContainer()
 {
     currentPage = new InstructionPage();
     Content     = currentPage;
 }
Example #2
0
 public void SwitchTo(AppPage page)
 {
     pages.Push(currentPage);
     currentPage = page;
     Content     = currentPage;
 }
Example #3
0
 public static void SwitchTo(AppPage page)
 {
     pc.SwitchTo(page);
 }