Facebookの友達と一緒にラップパネルを作成する必要があります。つまり、アイテム数が400を超えており、すべてのアイテムが読み込まれるまでに5〜10秒かかります。
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<toolkit:WrapPanel/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
このコードは良いでしょうが、すべての要素を1行に配置します...:
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
VirtualizingStackPanelにアイテムラッピングを追加する方法、またはWrapPanelにVirtualizingを追加する方法に関するアイデア: