Exemplo n.º 1
0
        public ItemPage()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        } 
Exemplo n.º 2
0
        public HubPage()
        {
            this.InitializeComponent();

            // Hub wird nur im Hochformat unterstützt
            DisplayInformation.AutoRotationPreferences = DisplayOrientations.Portrait;

            this.NavigationCacheMode = NavigationCacheMode.Required;

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        }
Exemplo n.º 3
0
 public ItemPage()
 {
     InitializeComponent();
     NavigationHelper = new NavigationHelper(this);
 }