复制后的FlowDocument错误&粘贴了MSDN示例代码

时间:2012-06-19 04:06:43

标签: wpf xaml .net-4.0 reporting flowdocument

我正在尝试为我的应用程序编写一个报告模块,应用程序本身是用WPF编写的,经过一些研究后我发现FlowDocument是一种非常灵活的生成报告的格式。有一点真的让我感兴趣的是安装了.NET Framework的人可以在他们的浏览器中查看生成的FlowDocument

所以我使用以下代码创建了一个文档“Test.xaml”:

<FlowDocument
  xmlns=’http://schemas.microsoft.com/winfx/2006/xaml/presentation’
  xmlns:x=’http://schemas.microsoft.com/winfx/2006/xaml’>
  <Paragraph>The quick <Bold>brown fox</Bold> jumps over the lazy dog.
</Paragraph>
</FlowDocument>

然后我在IE9中打开了该文件,但收到了消息“应用程序中发生了错误...”

有人可以解释我收到此错误的原因吗?

1 个答案:

答案 0 :(得分:1)

就你所获得的错误而言,当我复制并粘贴MSDN示例代码时,我也得到了它。单引号和双引号是错误的,如果你改变它们就可以了。

<FlowDocument
    xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'
    xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
    <Paragraph>The quick <Bold>brown fox</Bold> jumps over the lazy dog.</Paragraph>
</FlowDocument>