示例#1
0
        public void LoadArtist(Artist artist)
        {
            AlbumCollection albums = artist.Albums;

            Artist = artist;

            try
            {
                using (MemoryStream s = new MemoryStream(albums.First().Cover))
                {
                    cover.Image = Image.FromStream(s, true, true);
                }
            }
            catch { }
            artistName.Text = artist.Name;
        }