Is it possible to find out what property is changing while handling the CurrentItemChange event?
Is it possible to find out what property is changing while handling the CurrentItemChange
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.