In my last post I covered basic topics about Caliburn and Caliburn.Micro. Lets look into the core infrastructure. Bootstrapper In short terms the Bootstrapper is responsible to configure the framework and provides extension points to hook in various Inversion of Control containers. The generic variant of the Bootstrapper allows defining which view acts as the main view (view-first) or which view model acts as the main model (view-model-first) of the application. The Bootstrapper can either be...
Caliburn.Micro – Core infrastructure
C