private void WineInfo(object sender, MouseButtonEventArgs e) { WineAPI selectedWine = (WineAPI)lstWines.SelectedItem; WineInfo info = new WineInfo(); info.PopulateData(selectedWine); info.Show(); }
public void PopulateData(WineAPI w) { txtCountry.Text = w.country; txtPrice.Text = w.price; lblTitle.Content = w.title; }