I have a object in a presenter connected to a view. Inside my XAMTL I have the following:
<Label Content="{Binding ElementName=PSV, Path=Presenter.Portfolio.Name}"/>
Now when the control is created, Portfolio is null, then i run another method which sets Portfolio. I've implemented INotifyPropertyChanged but so far, I've not been able to trigger to hookup to the binding.
Can someone give me tips? Can I bind to a property of a property ?