Is it possible to find out what property is changing while handling the CurrentItemChange event?
+1
A:
Not directly. BindingManagerBase listens to the ListChanged event from your data source, if the source supports IBindingList. When it gets this event and the ListChangedType property is ItemAdded or ItemChanged and the item position is the same as the current position, it fires the CurrentItemChange event.
So, you have to do the same.
Timores
2010-03-02 15:27:26
A:
I was happy to find that answer but I don't get how it helps. If I handle the ListChanged I have e.PropertyDescriptor set to null ! Where the hell is the property name then ?
Sÿl
2010-09-27 17:49:09