I have a class that inherits from BindingList<T>. It raises the ListChanged
event.
When an object is removed from the list, how do I figure out which object
was removed? ListChanged e.NewIndex points to the object that is now in the
position where the removed one was. But I want to do some processing on the
removed object.(remove it from other lists etc). How can I locate it?
Thanks
Andy
Bart Mermuys - 26 Oct 2006 21:55 GMT
Hi,
>I have a class that inherits from BindingList<T>. It raises the
>ListChanged event.
[quoted text clipped - 4 lines]
> on the removed object.(remove it from other lists etc). How can I locate
> it?
I'm afraid there is no way.
HTH,
Greetings
> Thanks
>
> Andy