你能告诉我我可以用它来制作一排像这样的照片: http://prntscr.com/6nlqsd
我希望能够选择它们以便能够做其他事情。任何帮助将非常感激。谢谢!
答案 0 :(得分:1)
好的这是一个简单的例子,假设MyCollection是包含ImagePath属性的对象的集合:
<ListView ItemsSource="{Binding MyCollection}">
<ListView.ItemTemplate>
<DataTemplate>
<Image Source="{Binding ImagePath}"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
现在您只需要为此提供集合并对其进行格式化以使其看起来不错。
答案 1 :(得分:0)
你可以使用'图标'而不是文字制作Listview
,这样你就可以获得图片了。