我正在尝试动态创建数据透视项目,
这里是我使用的代码
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
谁能帮我解决这个问题。
谢谢你。
但是我在创建数据透视项目时遇到了这个错误