【发布时间】:2011-05-09 10:29:37
【问题描述】:
我有一个 WPF 应用程序,它使用以下代码从嵌入式资源加载 FlowDocument
object something = XamlReader.Load( stream );
解析器告诉我他在
处找不到“clr-namespace:ReportPrinter”<FlowDocument
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:c="clr-namespace:ReportPrinter"
>
用谷歌快速搜索告诉我我需要指定程序集,但我该怎么做呢?
【问题讨论】: