c# - How to binding List<image> to xaml? -
how can bind images 300x300 width , height of images[1] xaml? public class trackspotify { public class externalurls { public string spotify { get; set; } } public class image { public int height { get; set; } public string url { get; set; } public int width { get; set; } } public class item { public string album_type { get; set; } public list<string> available_markets { get; set; } public externalurls external_urls { get; set; } public string href { get; set; } public string id { get; set; } public list<image> images { get; set; } public string name { get; set; } public string type { get; set; } public string uri { get; set; } } public class albums { public string href { get; set; } public list<item> items { get; set; } public int limit { get; set; } publ...