I have a derived DataGridView bound to a BindingList, and the object implements iNotifyPropertyChanged.
I'd like to do the following: When my a property attached to my DataGridView is changed, I want to call a function that will update the header of one of my columns.
Basically, I want to add my OWN response to the PropertyChanged event. Unfortunately, I cannot find where the hook\handle is for the event to subscribe to it myself.
Thanks in advance!
Edit:
The solution I took was a hybrid between the top two answers. I ended up subscribing to the ListAdded\Changed event, and was able to get enough context from there to update all of my functions.