I am trying to create a Silverlight application which pulls in my Flickr contacts and photos. I want them to display "nicely". I intend on creating a control that shows the user and their images right next to their name. I want each user to be listed one after another. Something like this:
----------------------------
User Name: <Photo> <Photo>
<Photo> <Photo>
----------------------------
User Name: <Photo> <Photo>
<Photo> <Photo>
----------------------------
User Name: <Photo> <Photo>
<Photo> <Photo>
----------------------------
User Name: <Photo> <Photo>
<Photo> <Photo>
----------------------------
User Name: <Photo> <Photo>
<Photo> <Photo>
----------------------------
I want to be able to create it dynamically and have a scrollbar appear if it is needed. (So the user can scroll up and down).
What's the best approach to create something like this? Is there a control or technique that I should follow?