Is there an event that fires when a binding is updated?
For example, I’d like to create a behavior to be applied to a Combobox that does something every time the Combobox’s ItemsSource is updated.
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.
The simple solution that I can think of is, when you say, you want to capture the itemsource change event. Normally this happens when you load the data or source data associated with change, I would raise a property changed event from the actual data source change and intercept that event and do what ever you need to do for item source change.