I'd like to know if there is a Silverlight control that allows me to display a list of items horizontally with a separator between each pair of items.
For example, suppose this is my list of items:
int[] items = new[] { 42, 43, 44, 45 };
then I want them to be rendered like this:
42 -> 43 -> 44 -> 45
This is just an example, in reality the items are objects that I'd like to bind to a template and the separator should be an image (or anything else). And in my case, the items are rendered as an element inside an ItemsControl
.
Seems rather simple, but I can't find a good way to do this.
Kind regards, Ronald