WP8.1 C# Binding Contact Image

后端 未结 4 1084
北荒
北荒 2021-01-07 14:24

Information
Quite simply, I’m attempting to create an app that would display the contacts for a user.

I’m also a self-taught programmer, so I

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-07 14:39

    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

提交回复
热议问题