【发布时间】:2012-10-30 09:19:01
【问题描述】:
我有这个数据结构:
Post {
attachments { },
postText
}
为了显示这个,我使用 ListView
<ListView ItemsSource="{Binding Posts}"
ItemTemplate="{StaticResource PostTemplate}"
Width="Auto"
Height="Auto" />
问题是,当我尝试在每个帖子中显示附件列表时。 每个附件都是一些类型内容(视频/音频/图像)的简单类型链接
Attachment {
type: video,
url: urlToVideo
}
如何显示基于上下文的模板以在附件中呈现所有类型的内容?
【问题讨论】:
标签: xaml listview windows-8 datatemplate