コード例 #1
0
 public CodeShowPage()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += navigationHelper_LoadState;
     this.navigationHelper.SaveState += navigationHelper_SaveState;
 }
コード例 #2
0
ファイル: CodeShowPage.xaml.cs プロジェクト: JayceeQ/codeshow
        public CodeShowPage()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += navigationHelper_LoadState;
            Windows.Phone.UI.Input.HardwareButtons.BackPressed += HardwareButtons_BackPressed;

            if (this.BottomAppBar != null)
            {
                this.BottomAppBar.SizeChanged += AppBar_SizeChanged;
            }
        }