I'm a newcommer in Caliburn.
I have a couple of questions of MVVM and Caliburn.
How can a view invoke a method explicitly on a ViewModel? Caliburn invokes a ViewModel constructor first. So if it is, then where the instance is going to be contained? The code inside my View create a new instance at the moment (I need to invoke a method on ViewModel explicitly). But regarding that ViewModel should be instantiated already, this is silly.
How can I force a binding update on the UI thread?