我想将文章的图像添加到windows 10中的rss feed的listview
我尝试使用此文章添加rss feed:https://code.msdn.microsoft.com/windowsapps/How-to-perform-RSS-Reader-4803093b
但我无法在listview中添加文章图片
答案 0 :(得分:0)
要将图像添加到listview项目,您需要将Listview DataTemplate定义为以下内容:
<ListView x:Name="MyList">
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image Source={Binding img} Height="100"/>
<TextBlock Text="{Binding text}"/>
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
然后,您可以通过从RSS Feed创建项目列表,然后将ListView
项目来源分配到此列表,为每个项目提供图像源和文本。