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>