0

我正在尝试动态创建数据透视项目,

这里是我使用的代码

paginationPivot.Items.Clear();

            for (int i = 1; i <= pagecount; i++)
            {
                TextBlock textBlock = new TextBlock();
                textBlock.Foreground = new SolidColorBrush(Colors.Blue);
                textBlock.FontSize = 30;
                textBlock.Text = (i).ToString();

                Border border = new Border();

                PivotItem pivotItem = new PivotItem() { Name="item"+i.ToString(), Header=textBlock, Content=border,Margin= new Thickness(0,-70,0,0), FlowDirection=System.Windows.FlowDirection.RightToLeft};

                paginationPivot.Items.Add(pivotItem);
            }

这是我得到的错误

A first chance exception of type 'System.ArgumentException' occurred in Microsoft.Phone.ni.dll

谁能帮我解决这个问题。

谢谢你。

但是我在创建数据透视项目时遇到了这个错误

4

1 回答 1

1

不能直接设置“Header=textBlock”,只用一个字符串保存你想显示的内容。例如:标题=“标题 1”。如果你想使用更复杂的 UI,让我们使用 HeaderTemplate:

<controls:Pivot.HeaderTemplate>
    <DataTemplate>
        <StackPanel Background="#666666" Margin="0">
            <TextBlock FontSize="30" Foreground="Blue" Text="{Binding}"/>
        </StackPanel>
    </DataTemplate>
</controls:Pivot.HeaderTemplate>

在那之后:

<controls:PivotItem Header="header 1">
</controls:PivotItem>
于 2014-05-07T12:22:01.413 回答