public ItemPage() { this.InitializeComponent(); this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += navigationHelper_LoadState; this.SizeChanged += ItemPage_SizeChanged; }
public GroupDetailPage() { this.InitializeComponent(); this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += navigationHelper_LoadState; this.SizeChanged += (s, e) => UpdateVisualState(e.NewSize.Width); }
public AboutPage() { this.InitializeComponent(); this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += navigationHelper_LoadState; }
public RecipeDetailPage() { this.InitializeComponent(); this.NavigationCacheMode = Windows.UI.Xaml.Navigation.NavigationCacheMode.Required; this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += navigationHelper_LoadState; }
public GroupedItemsPage() { this.InitializeComponent(); this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += navigationHelper_LoadState; this.SizeChanged += OnSizeChanged; RecipeSearchBox.QuerySubmitted += OnQuerySubmitted; RecipeSearchBox.SuggestionsRequested += OnSuggestionsRequested; }