在 SemanticZoom 控件中,我CollectionViewSource
对放大和缩小视图都使用相同的控件。为此,我将缩小GridView
的代码绑定在后面的代码中,如下所示:
(FavoriteGroupsSemanticZoom.ZoomedOutView as ListViewBase).ItemsSource = this.FavoriteGroupsViewSource.View.CollectionGroups;
一切都按预期工作。但是,现在缩小的 GridView 绑定到 DependencyObjects 列表而不是我的原始组。因此,当我访问 SelectedItems 时,我得到一个 WinRT 对象,其中包含 DependencyObjects 列表而不是我的组。
如何访问缩小的 GridView 的选定组?