动态加载 XAML 时的命名空间问题
我有一个 WPF 应用程序,它使用以下代码从嵌入式资源加载 FlowDocument
object something = XamlReader.Load( stream );
解析器告诉我他无法在
<FlowDocument
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:c="clr-namespace:ReportPrinter"
>
google 上快速搜索时找到“clr-namespace:ReportPrinter”,告诉我我需要指定程序集,但是如何我能做到?
I have a WPF application that load a FlowDocument from a embedded resource, with the following code
object something = XamlReader.Load( stream );
The parser tell me he cannot find the "clr-namespace:ReportPrinter" at
<FlowDocument
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:c="clr-namespace:ReportPrinter"
>
A quick search with google tell me i need to specify the assembly, but how i can do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需将包含指定类的程序集的名称附加到命名空间的定义中即可。正确字符串的一个很好的示例可以在 MSDN 中找到。还有关于描述某个组件的不同可能性的描述。
You simply append the name of the assembly containing the specified class to the definition of the namespace. A good example of the correct string can be found at MSDN. There is also a description about the different possibilities to describe a certain assembly.