Skip to main content

WPF

Introducing Caliburn.Micro.Autofac
·854 words·5 mins
Programming Autofac Caliburn.Micro MVVM WPF
Last year I wrote Bootstrapping Caliburn.Micro with Autofac and it has since become one of my most popular posts. While the code presented in the post worked at that time, wizbit and Craigology pointed out that it stopped working with newer versions of Autofac . I set out to do the minimum amount of changes to make it work with the newest versions Autofac and Caliburn.Micro .
Caliburn.Micro ViewModel File Template for ReSharper
·355 words·2 mins
Programming Learning Caliburn.Micro .NET Caliburn.Micro MVVM WPF ReSharper
Over the last few weeks I have been writing some in-depth articles for my Learning Caliburn.Micro series. Today is a brief side-discussion where I introduce a ReSharper File Template to help with the task of generating view-models.
Bootstrapping Caliburn.Micro with Autofac
·1358 words·7 mins
Programming Learning Caliburn.Micro .NET Caliburn.Micro MVVM WPF Autofac
It has been about two weeks since my last post in my Learning Caliburn.Micro series, so it far past the time for this post. Prepare the Project # This post is going to focus on using the Autofac IoC with Caliburn.Micro. From the point of view of the framework it fulfills the same task as the MEF bootstrapper I discussed in Caliburn.Micro the MEFtacluar, or Rob discussed in Caliburn.Micro Soup to Nuts Pt. 2 – Customizing The Bootstrapper. The difference is that it uses Autofac instead of MEF.
How To Do Logging with Caliburn.Micro
·1187 words·6 mins
Programming Learning Caliburn.Micro .NET Caliburn.Micro MVVM WPF Log4net NLog
Caliburn.Micro Logging Abstraction # This post covers logging. Caliburn.Micro has a simple logging abstraction that consists of an ILog interface, and a LogManager class (see below).
Caliburn.Micro the MEFtacluar
·635 words·3 mins
Programming Learning Caliburn.Micro .NET Caliburn.Micro MVVM WPF
I was going to call this post ‘How I learned to stop worrying and love MEF .’, but I am not sure enough people would get the reference. Besides, it would put the focus too much on MEF , and not on Caliburn.Micro , which is the topic of the post.