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>