0

hiiiアプリにリストボックスがあり、いくつかの写真のすべての行のコンテンツですリストボックスにあるすべての写真を1つの写真にまとめて適用し、Facebookで共有したいです写真を1つの写真に同じ順序でリストボックスに入れたいフェイスブックやツイッターで共有できるようにする

これは私のネストされたリストボックスです

                <ItemsPanelTemplate>



                    <StackPanel Orientation="Vertical"/>


                </ItemsPanelTemplate>


            </ListBox.ItemsPanel>
            <ListBox.ItemTemplate>

                <DataTemplate>
                    <StackPanel Orientation="Horizontal" >


                        <!--<TextBlock Padding="3,0,3,0"
                  Text="{Binding}" Foreground="DarkRed" FontSize="{StaticResource PhoneFontSizeSmall}"/>-->
                        <ListBox x:Name="phoronic_son" ItemsSource="{Binding}"   Foreground="Black"  Margin="82,228,71,209" >
                            <ListBox.ItemsPanel>

                                <ItemsPanelTemplate>



                                    <StackPanel Orientation="Horizontal"/>


                                </ItemsPanelTemplate>


                            </ListBox.ItemsPanel>
                            <ListBox.ItemTemplate>

                                <DataTemplate>
                                    <!--<TextBlock Padding="3,0,3,0"
                  Text="{Binding StringFormat='{}{0}.jpg'}" Foreground="DarkRed" FontSize="{StaticResource PhoneFontSizeSmall}"/>-->
                                    <Image Source="{Binding StringFormat='{}{0}.jpg'}" Height="80" Width="80"/>
                                </DataTemplate>
                            </ListBox.ItemTemplate>


                        </ListBox>


                    </StackPanel>

                </DataTemplate>


            </ListBox.ItemTemplate>

        </ListBox>
4

0 に答える 0