I have a tab that has its contents set to an object (TFS WorkItem). I have a DataTemplate for type WorkItem.
When I set an object to a tab, it displays well.
However, when I update one of the collections of an object (list of links), this change is not updated for presentation.
I tried to make my WorkItem DependencyProperty, and I also tried to set the contents of the tab content to null again, and then to my object (in the hope that it would reload it).
None of this works.
Normally I would just use an observable collection to store links, but since I don't have the WorkItem class, I need another solution that will manually update the DataTemplate.
Any ideas?
source share