Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

A simple example:

BindingList<Dog> dogs = kennel.Dogs;

// Works great!
listBoxDogs.DataSource = dogs;

// Confuses me.
listViewDogs.? = dogs;

I have explored the listViewDogs.DataBindings property, but I have not been able to tease out of it similar behavior to what I am seeing with the listBox control using DataSource.

There has to be a better method of updating the listViewDogs.Items collection then catching the dogs.ListChanged event and doing the manipulation of the listViewDogs.Items collection by hand.

What am I missing?

share|improve this question

1 Answer

up vote 1 down vote accepted

The list view unfortunately does not support databinding in that way.

here is a tutorial on how to implement it by creating a new control though.

http://www.codeproject.com/KB/list/ListView_DataBinding.aspx

ps. there are many more out there!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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