Suppose I have a view with the following control (DataContext is properly set to a view model that implements INotify):
When the view is first shown, Document is non existant (null). During runtime (after the user opens a Document), then Document and dependent structure (including Document.SelectedFrame.Image) is created.
At that point, I do invoke the PropertyChaned handler of my SelectedFrame object (which also implements INotifyProperty), but nothing happens.
Do I have to re-tie the bindings at runtime when Document gets created?