you can do one thing ..
you can retrieve all the images from the contacts class and store them in an array or stack or List of BitmapImages .. (*** i think list would be an better option )
Contact c = value as Contact;
foreach(var p in c)
{
q.Add(p.Thumbnail);
}
here q
is an list of bitmapmages