我正在开发简单的Windows手机应用程序。任何人都可以告诉我应该写什么代码来从左到右滚动图像?如果所有图像都来自Facebook帐户
答案 0 :(得分:5)
列出所有脸书图片,并使用列表框控件显示来自脸谱的所有图片 对于从左到右的滚动图像更改ListBox ItemsPanel属性。
<ListBox
Grid.Row="1" ScrollViewer.HorizontalScrollBarVisibility="Auto">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Image Source="{Binding FacebookImages}" Stretch = "Fill"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
答案 1 :(得分:1)
<ScrollViewer>
<StackPanel Orientation="Horizontal">
.. put all your <Image Source="..." />
</StackPanel>
</ScrollViewer>