I have a Pivot control which I am using as following within the XAML. I have bound the Pivot Title to a method on my view model as its content will vary depending upon what is being displayed.

 <controls:Pivot x:Name="MainPivot" ItemsSource="{Binding PivotItemHeaders}" Title="{Binding ApplicationTitle}"  >
        <controls:Pivot.HeaderTemplate>
            <DataTemplate>
                <TextBlock Text="{Binding Description}"/>
            </DataTemplate>
        </controls:Pivot.HeaderTemplate>
        <controls:Pivot.ItemTemplate>
            <DataTemplate>
                <ListBox x:Name="EventsListbox"
                         ItemsSource="{Binding allEventItems}"
                         ItemTemplate="{StaticResource EventDisplay3}"
                         SelectionChanged="EventsListbox_SelectionChanged"/>
            </DataTemplate>
        </controls:Pivot.ItemTemplate>
    </controls:Pivot>

The collection of items is being refreshed and the binding is working fine for these objects - however the Pivot title is not refreshing with the new value. It seems stuck at the value when the page/pivot control was first shown.

Any ideas how I can get the pivot control to refresh? - Thanks

link|improve this question

76% accept rate
I assume you mean you're binding the pivot title to a Property on your viewmodel, not a method. – Matt Lacey Jul 26 '11 at 16:37
yes .. sorry - you are quite right. – Peter Jul 26 '11 at 18:47
feedback

1 Answer

up vote 0 down vote accepted

I just did a quick test, binding works just fine:

<controls:Pivot Title="MY APPLICATION" ItemsSource="{Binding Items}">
    <controls:Pivot.HeaderTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding LineOne}" />
        </DataTemplate>
    </controls:Pivot.HeaderTemplate>
    <controls:Pivot.ItemTemplate>
        <DataTemplate>
            <Grid>      
                <Button Content="Update" Click="Button_Click" />
            </Grid>
        </DataTemplate>
    </controls:Pivot.ItemTemplate>
</controls:Pivot>

And in the C#

private void Button_Click(object sender, RoutedEventArgs e)
{
    App.ViewModel.Items.Clear();
    App.ViewModel.Items.Add(new ItemViewModel() { LineOne = "foo" });
    App.ViewModel.Items.Add(new ItemViewModel() { LineOne = "bar" });
    App.ViewModel.Items.Add(new ItemViewModel() { LineOne = "baz" });
}

So clearly you're doing something very wrong. Post your code and we'll take a look.

Update

Title Binding also works

XAML

<controls:Pivot Title="{Binding Title}">
    <controls:PivotItem Header="first">
        <Grid>
            <Button Click="Button_Click" Content="OK!" />
        </Grid>
    </controls:PivotItem>
</controls:Pivot>

C#:

private void Button_Click(object sender, RoutedEventArgs e)
{
    Title = "foobar!";
    PropertyChanged(this, new PropertyChangedEventArgs("Title"));
}
link|improve this answer
Hi My binding for the content of the pivot control is working fine - it's just the Title of the Pivot control, which is also bound that is not working as I would like. – Peter Jul 26 '11 at 19:11
But as you see, I also bound the title, which works quite fine. So again, something is wrong with your code. You should post the viewmodel you're binding against, so we can have a look. – Claus Jørgensen Jul 27 '11 at 1:11
Hi Claus I will post the viewmodel code...but I dont see any binding for your title? I can see its set to "MY APPLICATION" rather than being bound. This is the field that I am trying to manipulate - the pivot item headers are working fine. – Peter Jul 27 '11 at 3:33
Oh! sorry for the confusion there. However, the binding should still work, regardless. Again, my guess is you're not notifying the viewmodel of the title property being updated. – Claus Jørgensen Jul 27 '11 at 4:14
Hi Claus - thanks for sticking with me on this... yes your guess was quite right - not RaisingProprtyChanged in the viewmodel. It works fine now. – Peter Jul 28 '11 at 1:16
feedback

Your Answer

 
or
required, but never shown

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