wp8将列表框的所有照片放到一张照片上

时间:2013-11-12 19:04:35

标签: xaml windows-phone-8 listbox photo

HIII 我在我的应用程序中有一个列表框我的一些照片的每一行内容我想要的是将我的列表框中的所有这些照片放到一张照片上申请在Facebook上分享 我想将我的照片放在列表框中,并将相同的订单放到一张照片上,以便我能够将其分享到Facebook或Twitter

这是我的嵌套列表框

                

                <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>

0 个答案:

没有答案