Windows phone 7:在运行时使用唯一名称生成pivotitems

时间:2013-11-08 08:21:47

标签: c# windows-phone-7 pivot

我想知道是否可以在分配新的透视项目标题之前循环遍历现有的透视图项目并检查其标题,如果是,那么最好的是什么呢?

1 个答案:

答案 0 :(得分:0)

请尝试以下代码。

XAML

 <controls:Pivot Margin="12,35,12,24" Name="pivotMainList">
            </controls:Pivot>

背后的代码

 for (int i = 1; i <= Count; i++)
                {

                    PivotItem myNewPivotItem = new PivotItem();
                    myNewPivotItem.Name = "piv_" + i;
                    Grid myNewGrid = new Grid();

                    myNewGrid.Children.Add(any content if you have);

                    myNewPivotItem.Content = myNewGrid;

                    pivotMainList.Items.Add(myNewPivotItem);

                }