Acutally i’m doing a WPF application where user can select Image from a panel. There are two Button inside the panel (right arrow and left arrow). I’m not sure what is the name of the panel but i attach an image in my question. So, i want to ask how do i create the panel? Using a canvas and put the image inside the canvas? hm… and the buttons, I totally don’t have any ideal how to do it.
p/s: i’m wpf newbie
Image:

Here is one way to do it, using the standard ListBox control:
First, we need a pair of Previous/Next buttons and a ListBox. We make the ListBox lay out its items horizontally by changing its ItemsPanel:
In the ListBox’ Loaded event, we use VisualTreeHelper to search through its Template and find its built-in ScrollViewer. Once we find it, we hook it up to the two buttons we created: