0

如何使这个列表与列表框绑定?我可以得到我想要的数据,因为当我放置一个断点时,我看到它被正确加载。我听说他们有一个 ObservableCollection 但不知道如何使用然后不与 xaml 绑定。

 private void DownLoadCompleted(object sender, HtmlDocumentLoadCompleted e)
        {
            _popVideos = new List<PopularVideos>();
            var data = e.Document.DocumentNode.SelectSingleNode("//div[@class='content']")
               .Descendants("img")
               .Select(img => new
               {
                   Title = img.Attributes["alt"].Value,
                   Url = img.Attributes["src"].Value,
               }).ToList();

            foreach (var item in data)
            {               
                PopularVideos pop = new PopularVideos(item.Title, item.Url);
                _popVideos.Add(new PopularVideos(item.Title, item.Url));
            }

            listBoxPopular.ItemsSource = _popVideos;
        }

我的课:

class PopularVideos
    {
        public PopularVideos() { }
        public PopularVideos(string titulo, string url)
        {
            Titulo = titulo;            
            BitmapImage Img = new BitmapImage(new Uri(url));
        }

        public string Titulo { get; set; }

        public Uri Url { get; set; }
    }
4

1 回答 1

1

正如我在您最初的问题中提到的那样,您应该阅读一篇很棒的文章作为数据绑定的介绍

于 2013-07-06T02:30:38.193 回答