I'm doing some binding in Windows Phone 8's WPF form. I've got a list bound to the object itself:
{Binding .}
That object implements the INotifyPropertyChanged interface. In a scenario where I bind to a property on that object:
{Binding someProperty}
I can call the property changed event and my list will be updated. However, in the case that I'm bound to my object itself, how can I notify the list that the object changed?