vote up 0 vote down star

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)
    {
    }
flag

57% accept rate

closed as no longer relevant by Sander Nov 10 '08 at 13:04

1 Answer

vote up 0 vote down

Remember that it's the contents of the list that changes, not the list itself. You will need to handle the CollectionChanged event on the new list in OnTabTitlesChanged, then you will get the updates in this event handler.

In general, one would make the dependency property type IEnumerable, like ItemsControl.ItemsSource, then if the new value implements INotifyCollectionChanged handle the event. Don't forget to remove the handler for the old value!

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.