I am creating an RSS reader and would like to create PivotItems for RSS the user has.

I know that I'll be passing in the number of items into the PivotView so I can create the number of items upon creation.

Does anyone know how I would go about this programmatically?

link|improve this question

80% accept rate
1  
You might be interesting in adding items from c sharp file stackoverflow.com/questions/4439337/… – Roman Nov 15 '11 at 21:17
feedback

1 Answer

up vote 3 down vote accepted

The best way would be to use the MVVM pattern.

You could create a view model class for the subscriptions and add them to an ObservableCollection. You then just need to bind the Pivots ItemsSource property to the collection:

        <controls:Pivot ItemsSource="{Binding Path=Subscriptions}">
            <controls:Pivot.ItemTemplate>
                <DataTemplate>
                    <controls:PivotItem Header="{Binding Path=DisplayName}">
                        <Listbox ItemsSource="{Binding Path=Items}">
                            ...
                            ...
                        </ListBox>
                    </controls:PivotItem>
                </DataTemplate>
            </controls:Pivot.ItemTemplate>
        </controls:Pivot>
link|improve this answer
ill try this and Roman suggestion tonight and let u know how it works out – CStreel Nov 18 '11 at 0:01
feedback

Your Answer

 
or
required, but never shown

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