我在混合中显示设计时数据时遇到问题这是我的代码这是我的集合视图源:
<CollectionViewSource
x:Name="DataSource"
Source="{Binding Groups}"
IsSourceGrouped="true"
ItemsPath="Items"
d:Source="{Binding ItemGroups, Source={d:DesignInstance Type=data:SampleData, IsDesignTimeCreatable=True}}"/>
以及使用它的网格视图:
<GridView
x:Name="itemGridView"
ItemsSource="{Binding Source={StaticResource DataSource}}"
我的问题是我只在 VS11 中看到设计时数据,但在 Blend 中没有。这是为什么?
谢谢