When a changed is made in the bindingSource List the evente listachanged is fired here i have inforamtion about which item of the list has change, i also need information of which field of this item has that change.
Could anybody tell me if i have a way to obtain this information
Thanks.
I'm working in visual studio 2005 cf v2.0

BindingSource ListChanged Event
Zub
On desktop that can be done by accessing PropertyDescriptor property on ListChangedEventArgs:
http://msdn2.microsoft.com/en-us/library/system.componentmodel.listchangedeventargs.propertydescriptor.aspx
This property is not available on NETCF, but you can access private field 'propDesc' via reflections.