Hello,
I have setup a DockingAdapter using the guide here:
I have an ObservableCollection of a simple class (Header and DockState) that the DockingAdapter ItemSource is set to.
I can create new tabs by adding items to the ObservableCollection and they appear, so that works.
But I cannot figure out how to get the Header of the tabs to update - I was thinking that a change to the ObservableCollection Header property would update the tab, but it does not. I have checked, the changes are in the collection, but the tabs do not update.
I am using MVVMCross with SetProperty(ref header, value); to notify the UI of the change.
How can I get the tab header binding to update using MVVM? I want to be able to change the collection and have the tab header update. Is that possible?
Thanks for any help.