protected override async void OnNavigatedTo(NavigationEventArgs e) { Loading.IsActive = true; FeedHelper helper = new FeedHelper(); var items = await helper.GetNewsAsync("https://blogs.windows.com/feed"); News.ItemsSource = items; Loading.IsActive = false; }