1
我正在開發簡單的Windows Phone應用程序。可以任何人告訴我應該寫什麼代碼來將圖像從左向右滾動?如果從Facebook賬戶來如何在Windows Phone 8中水平滾動圖像
我正在開發簡單的Windows Phone應用程序。可以任何人告訴我應該寫什麼代碼來將圖像從左向右滾動?如果從Facebook賬戶來如何在Windows Phone 8中水平滾動圖像
使所有的Facebook圖像的列表,並使用ListBox控件來顯示所有圖片用於滾動圖像的facebook 從左到右更改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>
呦滾動圖像的所有圖像左到右,你需要寫類似的東西:
<ScrollViewer>
<StackPanel Orientation="Horizontal">
.. put all your <Image Source="..." />
</StackPanel>
</ScrollViewer>
謝謝Jaihind ..它的工作。 – Piya