I'm needing to display a list of numbers from a collection in an Items Control. So the items are: "1", "2", "3".
When they are rendered, I need them separated by a comma (or something similar). So the above 3 items would look like this: "1, 2, 3".
How can I add a separator to the individual items, without having one tacked on the end of the list?
I am not stuck on using an ItemsControl, but that's what I had started to use.