示例#1
0
        public void HandleDownloaded(object sender, ArtDownloadedEventArgs e)
        {
            if (e == null || e.song == null)
            {
                return;
            }
            var song = Info.Entity is SongViewModel;

            if (song == null)
            {
                return;
            }
            OnDownloaded();
        }
示例#2
0
 public void HandleDownloaded(object sender, ArtDownloadedEventArgs e)
 {
     if(e == null || e.song == null) return;
     var song = Info.Entity is SongViewModel;
     if(song == null) return;
     OnDownloaded();
 }