I'm trying to follow the advice above under "Using Caliburn.Micro in Office and WinForms Applications".
In a Winform, I have this code:
myBootStrapper = new AppBootstrapper(false);
myBootStrapper.Start();
Where the bootstrapper is:
public class AppBootstrapper : BootstrapperBase
However, I can't pass the "false" in to the base constructor, or figure out how to indicate that useApplication is set to false.
What am I missing?
Thanks!
↧