protected override async void OnNavigatedTo(NavigationEventArgs e)
        {
            Listing = await Windows.ApplicationModel.Store.CurrentApp.LoadListingInformationAsync();
            Products = Listing.ProductListings.ToList();
            PlayerGold.Text = App.Player.Gold.ToString();
            InAppItemsListBox.ItemsSource = Products;

            base.OnNavigatedTo(e);
        }
예제 #2
0
        protected override async void OnNavigatedTo(NavigationEventArgs e)
        {
            Listing = await Windows.ApplicationModel.Store.CurrentApp.LoadListingInformationAsync();

            Products        = Listing.ProductListings.ToList();
            PlayerGold.Text = App.Player.Gold.ToString();
            InAppItemsListBox.ItemsSource = Products;

            base.OnNavigatedTo(e);
        }