コード例 #1
0
ファイル: ItemPage.xaml.cs プロジェクト: xyrus02/mfat-client
        public ItemPage()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        } 
コード例 #2
0
ファイル: HubPage.xaml.cs プロジェクト: xyrus02/mfat-client
        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;
        }
コード例 #3
0
ファイル: ItemPage.xaml.cs プロジェクト: xyrus02/mfat-client
 public ItemPage()
 {
     InitializeComponent();
     NavigationHelper = new NavigationHelper(this);
 }