I am trying to create a button that has multiple images that scroll through like in the windows 8 photos app.(EDIT) Meaning the individual button. Like how each button scrolls through the images inside the album it links to.(EDIT) But I have had zero luck. Any help would be appreciated because i have not clue where to start.
-
There are quite a few ways to accomplish this. Do you prefer handling things in Code Behind? If so, I would use databinding against a view object that had a timer that shifted the "CurrentDisplayImagePath" once in a while, giving you full control over the process. – Johny Skovdal Oct 22 '12 at 09:37
3 Answers
I think you are refering to a flipview
Here is official documentation on how to make a flipview for javascript and html
http://msdn.microsoft.com/en-us/library/windows/apps/hh465425.aspx
Heres the one for VB http://msdn.microsoft.com/en-us/library/windows/apps/xaml/Hh781233(v=win.10).aspx
if you have more questions please comment

- 97
- 1
- 9
I know how to do it without writing codes. I'm not familar with codes. But I've made one like what you said: the button is a slideshow and each picture links to different pages. If you do not mind spend some time, you can try Photo Flash Maker. This is the program I use. I'm sure it can help you. You may even email me if you have any quesitons about it.

- 11
- 1
Try Starting with this, and make changes whatever you like..
<ScrollViewer>
<StackPanel>
<Image />
<Image />
<Image />
<Image />
</StackPanel>
</ScrollViewer>
Refer Scrollviewer, StackPanel and Image tags on MSDN site for detailed properties and events related to them.

- 2,147
- 4
- 18
- 31
-
Sorry shouldve specified more, i meant the actual buttons themselves, not a scroller – Dillon Smith Oct 21 '12 at 16:01
-
Can you elaborate the "Button" that you want, what it should do or how does it look ? – akshaykumar6 Oct 21 '12 at 16:32
-
They are Buttons that lead to the different albums and they change their face to different images inside the albums every so many seconds – Dillon Smith Oct 21 '12 at 17:07