I bind the ObservableCollection of data objects to the source tab control element. I correctly understood how to link the controls inside the created tabitem, however I cannot figure out how to change the tabitem header property that is created using the a property in the Observable Collection. Sorry if I put it wrong. Here is my XAML for the tabitem data template:
<DataTemplate x:Key="TabItemTemplate"> <TreeView Height="461" VerticalAlignment="Top" Width="625" ItemTemplateSelector="{StaticResource TreeviewDataSelector}" ItemsSource="{Binding}" /> </DataTemplate>
source share