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

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -