0

パノラマ ビューの 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>

上記のコードを試しましたが、何も表示されませんか?

4

1 に答える 1

0

はい、可能です。panoramaitem では Orientation="Horizo​​ntal" と入力し、リストボックスを使用している場合は、itempanel を stackpanal 方向の水平に設定します。

  <controls:PanoramaItem Orientation="Horizontal" Header="item1">
            <Grid >
                <ListBox x:Name="lst">
                    <ListBox.ItemTemplate>
                        <DataTemplate>
                                <Image Margin="10" Source="{Binding}" Width="200" Height="200"/>
                        </DataTemplate>
                    </ListBox.ItemTemplate>
                    <ListBox.ItemsPanel>
                        <ItemsPanelTemplate>
                            <StackPanel  Orientation="Horizontal"/>
                        </ItemsPanelTemplate>
                    </ListBox.ItemsPanel>
                </ListBox>
            </Grid>
        </controls:PanoramaItem>
于 2013-07-18T09:36:37.860 に答える