protected override async void OnNavigatedTo(NavigationEventArgs e) { await WeBallAPI.getRelations(); if (WeBallAPI.Success == false) { return; } ListFriends.ItemsSource = WeBallAPI.relations; }
protected override async void OnNavigatedTo(NavigationEventArgs e) { string parameter; if (NavigationContext.QueryString.TryGetValue("match", out parameter)) { match = JsonConvert.DeserializeObject <Match>(parameter); } await WeBallAPI.getRelations(); if (WeBallAPI.Success == false) { return; } ListFriends.ItemsSource = WeBallAPI.relations; }