所以我在 Windows 8 上的 VS12 中工作,并破解 ContosoCookbook 代码来制作不同的应用程序。我正在尝试设置一个“MainMenu.xaml”页面,并且我有:
<CollectionViewSource
x:Name="groupedItemsViewSource"
Source="{Binding Groups}"
IsSourceGrouped="true"
ItemsPath="TopItems"
d:Source="{Binding AllGroups, Source={d:DesignInstance Type=data:FlashCardDataSource, IsDesignTimeCreatable=True}}"/>
我得到的错误是:名称“FlashCardDataSource”在命名空间“using:FlashCards.Data”中不存在。
...但我不明白它是怎么做到的。我从哪里开始寻找?我是 XAML 的新手。
-肯