C# Class ThreadedBindingList, code

Provides a version of BindingList that updates on the class-creating thread (via its sync context), as opposed to updating on the thread that caused the change Based on work by Greg Schmitz (see http://groups.google.co.uk/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/214e55884b16f4d9/f12a3c5980567f06#f12a3c5980567f06)
Inheritance: BindingList
ファイルを表示 Open project: shendongnian/code Class Usage Examples

Protected Methods

Method Description
OnAddingNew ( AddingNewEventArgs, e ) : void
OnListChanged ( ListChangedEventArgs, e ) : void

Private Methods

Method Description
BaseAddingNew ( AddingNewEventArgs, e ) : void
BaseListChanged ( ListChangedEventArgs, e ) : void

Method Details

OnAddingNew() protected method

protected OnAddingNew ( AddingNewEventArgs, e ) : void
e AddingNewEventArgs,
return void

OnListChanged() protected method

protected OnListChanged ( ListChangedEventArgs, e ) : void
e ListChangedEventArgs,
return void