Top "Bindinglist" questions

A .Net framework component that provides a generic collection that supports databinding.

Find in BindingList<T>

How to find an object in BindingList that has a property equals to specific value. Below is my code. public …

.net winforms bindinglist
Using Fody.PropertyChanged, how to use with a property of BindingList<T>?

I have the following classes using Fody.PropertyChanged weaving: [ImplementPropertyChanged] public class OtherClass : INotifyPropertyChanged { #pragma warning disable 67 public event PropertyChangedEventHandler …

c# bindinglist fody fody-propertychanged
Sortable BindingList bound to DataGridView with programmatic sort

I have implemented the SortableSearchableList class found at http://msdn.microsoft.com/en-us/library/aa480736.aspx and have added a …

c# winforms data-binding datagridview bindinglist
AllowUserToAddRows doesn't work with with List<> Datasource on DataGridView

I have a DataGridView with the DataSource set to List<myClass> However, the new row indicator does not …

c# .net winforms datagridview bindinglist
Why aren't classes like BindingList or ObservableCollection thread-safe?

Time and time again I find myself having to write thread-safe versions of BindingList and ObservableCollection because, when bound to …

c# .net thread-safety observablecollection bindinglist
Why NOT BindingList in WPF

I have asked this question on MSDN forums as well ... http://social.msdn.microsoft.com/Forums/en/wpf/thread/4493988a-9…

wpf observablecollection bindinglist
Get Deleted Item in ItemChanging event of BindingList

I am using Binding List in my application along with ItemChanged event. Is there any way I could know the …

c# inotifypropertychanged bindinglist
BindingList with my class populating a ComboBox using a property of it?

I have a BindingList with my class where I would like to populate a ComboBox using a property of it …

c# winforms .net-3.5 combobox bindinglist
Why can i not cast an IEnumerable<T> list to a BindingList<t>?

Is it possible to cast an IEnumerable list to a BindingList collection? The IEnumerable list is a list of typed …

c# ienumerable bindinglist
Binding to BindingList<T> - choose what to bind?

Say I have an business object called Sample and I have BindingList of Samples. A sample has 4 properties. Can I …

c# data-binding compact-framework bindinglist