ItemsPageテンプレートを使用してvs2012でプロジェクトを作成しました。
<!-- Collection of items displayed by this page -->
<CollectionViewSource
x:Name="itemsViewSource"
Source="{Binding Items}"/>
ここで{BindingItems}とはどういう意味ですか?WindowsストアプロジェクトのItemsPageに表示されます。新しいItemsPageには、IMapコレクションを指すDefaultViewModelが定義されている基本クラスCommon.LayoutAwarePageがあります。このコレクションにはItemsプロパティがないので、SourceはここでItemsをどのように指しているのでしょうか。
ありがとうカジャル