tags:

views:

142

answers:

2

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
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