I have an Xceed DockingManager that is bound to an observable collection of objects. The docking manager populates a dropdown button based on the number of objects within the observablecollection. While I can see that there are elements populating the dropdown contents there are no titles being displayed. Unlike the document headers I don't see a specific property to bind to for the dropdown. What property do I need to bind to in order to display the title of the document within the dropdown?
Here is what my current bindings look like in xaml
<xcad:DockingManager Grid.Row="1" Name="DockManager" DocumentsSource="{Binding InstrumentsCollectionView}" DocumentClosed="DockManager_DocumentClosed"> <xcad:DockingManager.DocumentHeaderTemplate> <DataTemplate> <TextBlock Text="{Binding Content.Title}"></TextBlock> </DataTemplate> </xcad:DockingManager.DocumentHeaderTemplate> <xcad:LayoutRoot x:Name="_layoutRoot"> <xcad:LayoutPanel Orientation="Horizontal"> <xcad:LayoutDocumentPaneGroup x:Name="_instrumentLDPG"> <xcad:LayoutDocumentPane x:Name="_instrumentLDP"> </xcad:LayoutDocumentPane> </xcad:LayoutDocumentPaneGroup> </xcad:LayoutPanel> </xcad:LayoutRoot> </xcad:DockingManager> 