1
如何水平設置圖像。我嘗試使用列表框,它垂直滾動,即使ScrollViewer.VerticalScrollBarVisibility =「禁用」有沒有什麼方法可以設置圖像或任何控制使用?,請幫幫我。在Windows Phone 8中使用圖像預覽的水平圖像視圖
如何水平設置圖像。我嘗試使用列表框,它垂直滾動,即使ScrollViewer.VerticalScrollBarVisibility =「禁用」有沒有什麼方法可以設置圖像或任何控制使用?,請幫幫我。在Windows Phone 8中使用圖像預覽的水平圖像視圖
您必須設置ItemPanelTemplate
第一,試試這個
<ListBox x:Name="myLLS" ScrollViewer.HorizontalScrollBarVisibility="Visible">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<!-- here is where we change stuff -->
<StackPanel Orientation="Horizontal"></StackPanel>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Border BorderBrush="Red" BorderThickness="1,1,1,1">
<StackPanel Height="100" Background="#FF00044D">
<!-- Your Image collection from your ViewModel -->
</StackPanel>
</Border>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
謝謝老兄其工作 – Madhu 2014-10-09 11:08:50