我有一个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
,但它是一个空对象。思想?
最佳答案
确保对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
}