我使用 ItemsPage 模板在 vs 2012 中创建了一个项目。
<!-- Collection of items displayed by this page -->
<CollectionViewSource
x:Name="itemsViewSource"
Source="{Binding Items}"/>
这里的 {Binding Items} 是什么意思?我在 Windows Store 项目的 ItemsPage 中看到它。新的 ItemsPage 有一个基类 Common.LayoutAwarePage ,其中定义了 DefaultViewModel ,它指向一个 IMap 集合。此集合没有任何 Items 属性,那么 Source 如何在此处指向 Items?
谢谢卡哈尔