编辑:马特,这确实解决了我的一些(大部分)问题,谢谢。现在唯一挥之不去的问题是如何在 WPF 中执行此操作?我有一个基于 a 的自定义部分,UserControl
但 WPF 中没有办法:
[Import]<my:SomeCustomControl>
所以级联在这种情况下不起作用。
/编辑
我在我的项目中 [导入] 各种 MEF 组件时遇到问题。我必须在我使用的每个类中都使用 CompositionContainer 吗?在下面的代码中,Helper.TimesTwo() 方法中引发了空引用异常,但是当我在 Program 类中调用 logger.Log() 时,一切正常。任何帮助将不胜感激。
(这将作为控制台应用程序编译和运行)。
using System;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
var p = new Program();
p.Run();
}
[Import]
private ILog logger { get; set; }
public void Run()
{
var catalog = new DirectoryCatalog(".");
var container = new CompositionContainer(catalog);
var batch = new CompositionBatch();
batch.AddPart(this);
container.Compose(batch);
logger.Log("hello");
var h = new Helper();
logger.Log(h.TimesTwo(15).ToString());
Console.ReadKey();
}
}
class Helper
{
[Import]
private IDouble doubler { get; set; }
private Helper()
{
// do I have to do all the work with CompositionContainer here again?
}
public double TimesTwo(double d)
{
return doubler.DoubleIt(d);
}
}
interface ILog
{
void Log(string message);
}
[Export(typeof(ILog))]
class MyLog : ILog
{
public void Log(string message)
{
Console.WriteLine("mylog: " + message);
}
}
interface IDouble
{
double DoubleIt(double d);
}
[Export(typeof(IDouble))]
class MyDoubler : IDouble
{
public double DoubleIt(double d)
{
return d * 2.0;
}
}
}