Edit: not relevant anymore - turns out the cause was a Silverlight bug that caused the control to bind to a completely different collection
I have a custom Silverlight tab control called TabControl, which has a member for the collection of tab titles. I want to bind this to a list of tab titles which will change at runtime.
The initial bind works fine but TabControl receives no updates. If I use a List or ObservableCollection, it never changes - apparently, TabControl just receives a copy of this list.
What am I doing wrong? No, better yet - tell me how I should be binding to a collection - perhaps I have some fundamental misunderstanging?
Here is basically how I do it at the moment: I have a ViewModel resource which contains a TabBar which contains the TabTitles list. TabBar implements INotifyPropertyChanged.
I bind with a simple path-expression. I tried changing the binding mode but it made no difference - only the load-time value is given to TabControl.
Here is the code for the TabControl's TabTitles property:
// <summary>
/// TabTitles Dependency Property
/// </summary>
public static readonly DependencyProperty TabTitlesProperty =
DependencyProperty.Register("TabTitles", typeof(ObservableCollection<string>), typeof(TabControl),
new PropertyMetadata((ObservableCollection<string>)null,
new PropertyChangedCallback(OnTabTitlesChanged)));
/// <summary>
/// Gets or sets the TabTitles property. This dependency property
/// indicates which titles to give to the tab buttons.
/// </summary>
public ObservableCollection<string> TabTitles
{
get { return (ObservableCollection<string>)GetValue(TabTitlesProperty); }
set { SetValue(TabTitlesProperty, value); }
}
/// <summary>
/// Handles changes to the TabTitles property.
/// </summary>
private static void OnTabTitlesChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
((TabControl)d).OnTabTitlesChanged(e);
}
protected virtual void OnTabTitlesChanged(DependencyPropertyChangedEventArgs e)
{
}
