How to use Ninject in a Windows Forms application?

怎甘沉沦 提交于 2019-11-27 21:19:08

Well the first steps are to switch from:

var form = new MainForm();
Application.Run(form);

to:

var kernel = new StandardKernel( new ModuleRegisteringICountRepository());
var form = kernel.Get<MainForm>();
Application.Run(form);

Perhaps a clarifying edit or two about what sort of thing you're looking to achieve might get you a more detailed answer.


Highly recommended to get up to speed with the patterns around this is @Mark Seemann's Dependency Injection in .NET book (in it's parlance, the transformation above makes Main your Composition Root - the (single) Get Composes the object graph of your app.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!