パノラマ ビューの 3 ページにわたって長方形または画像を拡張することは可能ですか? 現時点では最初のページだけですが、他のページにも拡張したいと考えています。
どの項目の余白または幅を設定する必要があるか、パノラマまたはパノラマ項目または長方形がわかりません。al 3 を試しましたが、まだ機能しません
<phone:PanoramaItem Header="third item" Orientation="Horizontal">
<!--Double wide Panorama with large image placeholders-->
<Grid >
<ListBox x:Name="lst">
<ListBox.ItemTemplate>
<DataTemplate>
<Rectangle Margin="10" Width="200" Height="200" Fill="Red"/>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</Grid>
</phone:PanoramaItem>
上記のコードを試しましたが、何も表示されませんか?