I'm looking for a way to inject dependency without calling Ninject's Get method.
For example in ASP.NET MVC I create a class that inherits from DefaultControllerFactoryMSDN, and add it to the controller builder's factory with ControllerBuilder.Current.SetControllerFactoryMSDN. Once I do that, I never call Get, and it fills in automatically.
Is there an equivalent for WPF?
I need a general answer that will fit most situations but if I have to give an example, I made a control in WPF, However it has a parameter in the constructor:
public AppVolumeSlider(IVolumeSetter volumeSetter)
Since my controls are in markup, WPF complains, of course: The type "AppVolumeSlider" does not include any accessible constructors..
How can I make Ninject/WPF fill it appropriately?
Note 1: If I can't do it in this example (I guess because of the markup) please give me a general answer. For example if I just make a class with a similar constructor and not a control. I still need to know this information.
Note 2: I have a hunch this might be related to the Inject attribute, but I have no idea.
Thank you.