XamlReader - 将多个CLR名称空间映射到单个XML名称空间

时间:2011-11-24 02:00:55

标签: wpf xaml xamlreader

我有一个带有AssemblyInfo.cs的WPF项目,它将多个CLR名称空间组合到一个XML名称空间中:

[assembly: XmlnsDefinition("http://foo.bar", "MyLibary.Controls")]
[assembly: XmlnsDefinition("http://foo.bar", "MyLibary.Converters")]

在XAML中,这样使用:

<UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:fb="http://foo.bar">
    <fb:FooButton IsEnabled="{Binding Something, Converter={fb:FooConverter}}"/>
</UserControl>

当XAML正常实例化时,这很有用,但现在我正在尝试使用XamlReader从我的项目中动态加载XAML文件。

问题:我似乎无法将多个CLR命名空间映射到单个XML命名空间。似乎添加到XamlTypeMapper的最后一个定义是唯一一个持续存在的定义(例如,它破坏了以前的注册):

var parserContext = new ParserContext();
parserContext.XmlnsDictionary.Add("x", "http://schemas.microsoft.com/winfx/2006/xaml");
parserContext.XmlnsDictionary.Add("fb", "http://foo.bar");

parserContext.XamlTypeMapper = new XamlTypeMapper(new string[] {"MyLibrary"});
parserContext.XamlTypeMapper.AddMappingProcessingInstruction("http://foo.bar", "MyLibrary.Converters", "MyLibrary");
parserContext.XamlTypeMapper.AddMappingProcessingInstruction("http://foo.bar", "MyLibrary.Controls", "MyLibrary");

...

var rootNode = XamlReader.Load(memeoryStream, parserContext) as FrameworkElement

错误消息是:

'Cannot create unknown type '{http://foo.bar}MyConverter'.'

如果所有代码都放在一个公共CLR命名空间下,一切正常,但遗憾的是这不是选项。是否有人将多个CLR命名空间映射到单个XML命名空间,以便动态加载XAML内容?

提前致谢!

1 个答案:

答案 0 :(得分:5)

正如上面的评论中所提到的,解决方案是在调用XamlReader.Load之前手动加载程序集并同时删除类型映射器和上下文:

Assembly.Load("MyLibrary");
var rootNode = XamlReader.Load(memeoryStream) as FrameworkElement

我会假设自XamlTypeMapper初始化了一个程序集列表,这个类将负责加载程序集(也许它是),但AddMappingProccessingInstruction的行为阻止了这个工作