私の wp8 アプリでは、いくつかのコンテンツ (画像など) を表示します。私は LongListSelector を使用し、各 LLS のアイテムには、画像のコレクションを持つ ItemsControl があります。1 行に 2 つの画像を表示したいので、wrappanel を使用します。しかしInitializeComponent()
、ユーザーコントロールのページで XamlParseException をスローします。wrappanel がなければ、すべて正常に動作します。ここにコード
<ItemsControl HorizontalAlignment="Center" ItemsSource="{Binding Vkontakte.Attachments.Photos}" >
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<toolkit:WrapPanel Height="100" Width="100" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Image Margin="0,10,0,0" >
<Image.Source>
<BitmapImage UriSource="{Binding Src}" CreateOptions="BackgroundCreation" />
</Image.Source>
</Image>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
多分問題はケースにあります、それItemsControl
はStackPanel
?