这是我调试应用时收到的错误,我不明白为什么会这样。我正在尝试解析这个练习,以及什么时候解析#34;再次传递这个错误。
类型' System.ArgumentException'的例外情况发生在mscorlib.dll中,但未在用户代码中处理。
WinRT信息:名称已存在于树中:%0。
其他信息:未指定的错误
如果存在此异常的处理程序,则可以安全地继续该程序。
XAML:
<RichTextBlock x:Name="rchSpecialPagesLlenaBlanco" Foreground="Black" Margin="50,0,0,0" IsTextSelectionEnabled="False"/>
代码:
case 2:
rchSpecialPagesLlenaBlanco.Visibility = Visibility.Visible;
rchSpecialPagesLlenaBlanco.DataContext = tmpExcersice.LlenaBlancoExcersiceList.ElementAt(0);
rchSpecialPagesLlenaBlanco.Blocks.Clear();
for (int x = 0; x < tmpExcersice.LlenaBlancoExcersiceList.Count(); x++)
{
rchSpecialPagesLlenaBlanco.Blocks.Add(parser.ParseParaCrecer(tmpExcersice.LlenaBlancoExcersiceList.ElementAt(x).ExcersiceNumber, MyBookMetadata.Course, currentFontSize, Colors.Black, new FontFamily("Resources/Fonts/Programa Tutorias Bold.ttf#Programa Tutorias")));
rchSpecialPagesLlenaBlanco.Blocks.Add(parser.ParseParaCrecer(tmpExcersice.LlenaBlancoExcersiceList.ElementAt(x).ExerciseText, MyBookMetadata.Course, currentFontSize, Colors.Black, new FontFamily("Resources/Fonts/Programa Tutorias Bold.ttf#Programa Tutorias")));
}
break;