Ninject属性注入返回null

时间:2010-08-24 00:41:19

标签: c# winforms ninject

我有一个WinForms应用程序,其代码如下:

static void Main()
{
    IKernel kernel = new StandardKernel(new MyModule());
    TestInterface test = kernel.Get<TestInterface>();
}

对于Module.Load()事件:

Bind<TestClass>().ToSelf().InSingletonScope();
Bind<TestInterface>().To<TestClass>();

此时test方法中的Main()是我期待的正确对象。

稍后我会使用属性注入:

[Inject]
TestInterface test {get;set;}

加载表单后,尝试使用test,但它是一个空对象。

思想?

2 个答案:

答案 0 :(得分:3)

确保在IKernel实例上调用Inject()并传入表单实例。这将确保正确注入所有依赖项。例如......

[Inject]
TestInterface Test { get; set; }

private void Form_Load(object sender, EventArgs e)
{            
    IKernel kernel = ... // Get an instance of IKernel
    kernel.Inject(this);

    // Your form dependencies have now been injected and the 
    // Test property is ready to use
}

答案 1 :(得分:3)

而不是做

var form = new MainForm()

...

class MainForm
{
    MainForm()
    {
        GlobalKernel.Inject(this)

...

你想做的事:

var form = Kernel.Get<MainForm>()

这样就不需要显式的Inject(并允许你进行构造函数注入)。

我不知道Ninject的任何WinForms(或WPF)样本(但这是一个很好的问题要求和/或坚持奖励 - 最近出现了IIRC)

另见:

IoC/DI framworks with Smart Client Winform apps: How should I approach this?

What is the best practice for WinForms dialogs with ninject?