Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can someone describe what the difference between the two are for my project.

Currently I have a List<MyClass> and set the BindingSource to that and a DataGridView to the BindingSource.

I have implemented IEditableObject so when CancelEdit is called I revert my object back to what it was with a Memberwise.Clone()

Will changing my List to a BindingList solve any of this and what are the advantages of using a BindingList?

share|improve this question

2 Answers

up vote 31 down vote accepted

A List<> is simply an automatically resizing array with a couple of helper functions (eg: sort). It's just the data, and you're likely to use it to run operations on a set of objects in your model.

A BindingList<> is a standard wrapper around a list or a collection (it implements IBindingList), that raises events when you modify it. This is required to do two way databinding, since controls need to know when the list changes to update their state.

When you set a BindingSource's DataSource to a List<>, it internally creates a BindingList to wrap your list. You may want to use a BindingList instead if you want to access it outside of the BindingSource, but otherwise it's just the same.

IEditableObject is handled by the BindingSource. It'll call BeginEdit on any implementing object when you change the data in any bound control. You can then call EndEdit/CancelEdit on the BindingSource and it will pass it along to your object. Moving to a different row will call EndEdit as well.

share|improve this answer
Currently with my List<T> approach calling CancelEdit will not return the item being edited back to its original state hence why I use Clone(). Are you saying a bindinglist will handle that for me? – Jon Feb 11 '10 at 11:31
No, a BindingList has nothing to do with that functionality. The BindingSource simply calls CancelEdit on the current object regardless of the type of underlying list. There's nothing in the framework that automatically implements object versioning for plain objects. You can use DataTables/DataRows, which keep an original copy of the data for just this purpose. – Ilia Jerebtsov Feb 11 '10 at 11:44
You say that controls need to know when the list changes, can you explain further? I have a form with a datagridview and then another form from that with populated data. Do I need to concern myself about what your saying in this matter? – Jon Feb 11 '10 at 12:52
For example, the DataGrid needs to know when items are added to your list in order to add a new row. For that it uses the ListChanged event of the BindingList. If you were binding the grid directly to a List<T>, you would not have the event, and the grid wouldn't be able to know when you changed the list. You don't have to worry about it in your scenario because the BindingSource wraps the List<T> in a BindingList for you. As long as you work with the BindingSource and not the list itself, the controls will stay in sync. – Ilia Jerebtsov Feb 11 '10 at 18:54
Is there any workaround to use BindingList to WPF UI (the mvvm way)? Can I wrap the bindinglist to an observablecollection? – Lawrence A. Contreras Jan 16 at 4:59
show 4 more comments

A BindingList allows two-way databinding by using events, a List does not fire events when its collection changes.

I don't think it will fix your particular problem.

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.