Getting Selected Item information from ListView in WinRT
问题 I have the following code which popualtes a ListView with photos from Flickr private async void ParseFlickrResponse(HttpResponseMessage response) { XDocument xml = XDocument.Parse(await response.Content.ReadAsStringAsync()); var photos = from results in xml.Descendants("photo") select new FlickrImage { ImageId = results.Attribute("id").Value.ToString(), FarmId = results.Attribute("farm").Value.ToString(), ServerId = results.Attribute("server").Value.ToString(), Secret = results.Attribute(