I have a series of controls that are created at run-time and then added to my Silverlight application layout grid. I was wondering if there was some sort of event that I could trap AFTER data binding has occurred. I would like to do some post processing on the controls after data has been bounded from the DataContext
.
I have implemented INotifyPropertyChanged
, but that only gives me access to the properties of my model upon change, but I would rather have access to the individual user-control object.
Any ideas or suggestions?