Dear All,
I would like to have a horizontal list scrolling with images & text
how to do it in windows phone 8
(sample or example)
please check attached image similar to
list.png
Regards
Wael
Dear All,
I would like to have a horizontal list scrolling with images & text
how to do it in windows phone 8
(sample or example)
please check attached image similar to
list.png
Regards
Wael
You need to change the orientation of the item template selector (ItemsPanelTemplate) to horizontal, as described below
Code:<ListBox ScrollViewer.HorizontalScrollBarVisibility="Auto" ItemTemplate="{StaticResources YourTemplate}" > <ListBox.ItemsPanel> <ItemsPanelTemplate> <StackPanel Orientation="Horizontal" /> </ItemsPanelTemplate> </ListBox.ItemsPanel> </ListBox>