如何获取此页面上的数据?我需要获取图像及其相应的标题并显示在列表框中。使用类与否。我不知道怎么办,请帮帮我!
甚至不知道从哪里开始!我已经尝试了几件事,但没有任何工作,然后变成一团糟,有人会从一开始就指导我。
var imgs = e.Document.DocumentNode.SelectNodes(@"//img[@src]")
.Select(img => new
{
Link = img.Attributes["src"].Value,
Title = img.Attributes["alt"].Value,
}).ToList();
listBoxPopular.ItemsSource = imgs;
foreach (var item in imgs)
{
listBoxPopular.Items.Add(new PopularVideos(item.Title, item.Link));
}