xaml - Auto scroll banner images in a windows phone 8 app -
i'm trying implement autoscrolling , snapping images in windows phone 8 app have couple of images in stackpanel inside scrollviewer, , i'd them auto scroll horizontally every amount of time [5 seconds example] while still being able scroll , snap manually
this have far
<scrollviewer x:name="featuredscroll" grid.row="2" horizontalscrollbarvisibility="visible" verticalscrollbarvisibility="disabled" > <stackpanel x:name="featuredstack" orientation="horizontal"> <stackpanel.resources> <style targettype="image"> <setter property="margin" value="0,0,5,0"/> </style> </stackpanel.resources> <image source="http://www.google.com/images/srpr/logo4w.png"/> <image source="http://www.google.com/images/srpr/logo4w.png"/> <image source="http://www.google.com/images/srpr/logo4w.png"/> </stackpanel> </scrollviewer>
[images placeholders put in :p]
so have shows scrollable list of images [banners] can scroll horizontally, idea how achieve ?
http://www.c-sharpcorner.com/uploadfile/5439e6/image-slideshow-using-dispatchtimer-in-windows-store-apps/
how option? example win store apps, don't see reason why couldn't rewrite wp
Comments
Post a Comment