I'm using virtual mode of listview to show a larg data. But I don't know how to show image for each item. Who can help me ?

I wrote

private void ListContact_RetrieveVirtualItem(object sender, RetrieveVirtualItemEventArgs e)
    {
        MyContact contact = ContactData.GetMyContact(e.ItemIndex);
        if (e.Item == null) e.Item = new ListViewItem(contact.ToString());
        if (contact.Photo != null)
        {
            e.Item.ImageList.Images.Add("" + contact.Id, contact.Photo);
            e.Item.ImageKey = "" + contact.Id;
        }
        else
        {
            e.Item.ImageKey = "default";
        }
    }

But it don't work properly

link|improve this question

78% accept rate
What is error message? And possible you should look this question stackoverflow.com/questions/2525828/… – Soner Gönül Apr 19 '11 at 5:58
No, no error. But when runtime, i don't see any image. – Võ Quang Hòa Apr 19 '11 at 6:00
I also write event – Võ Quang Hòa Apr 19 '11 at 6:02
private void ListContact_DrawItem(object sender, DrawListViewItemEventArgs e) { e.DrawDefault = true; } – Võ Quang Hòa Apr 19 '11 at 6:02
feedback

1 Answer

up vote 1 down vote accepted

This seems to be a bug in the .NET Framework (that's been marked as Won't fix). You might want to check this out. The solution would be to use ImageIndex instead of ImageKey.

link|improve this answer
Thanks you. I have just tested and result is successfull. – Võ Quang Hòa Apr 19 '11 at 7:30
@VõQuangHòa: Glad I could help. If this solved your problem, please mark the answer as accepted. – alex Apr 19 '11 at 8:45
I have just read this rule from faq. But I'm sorry, I can't see "accepted answer" any where. Please help me. Thanks you – Võ Quang Hòa Apr 19 '11 at 15:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.