I\'m starting Caliburn Micro development and I have thought of an architecture where a viewmodel has properties, injected by MEF, which are other viewmodels. That way I can use contentcontrols in the
I am new to MVVM, and decided to use Caliburn and MEF on my current project. The project is basically a framework for hosting开发者_如何学JAVA screens and workflow based on a selected product. When th
I am attempting to write some UI automation tests for a WPF application that is using Caliburn.Micro and White. I am using CM\'s builtin conventions to bind my controls to the view model\'s properties
I\'m trying to get my head around Caliburn.Micro and MVVM in a small test WPF app. I\'ve got a custom user control that has a payment combo box (with the Cash, Check, Credit) and next to this combo b
I have a form with a textbox bound to an integer, and a button. Now, when the value of the textbox is invalid, I want to immediately disable the button.
I have a TextBox that I am setting the focus on using an attached property bound to a property of the view model. The attached property calls \"UIElement.Focus()\" to set the focus. The problem is whe
This is more of a MVVM question than a caliburn question, but it relates to how I can accomplish it with caliburn.
We\'re starting a new Silverlight project on Caliburn.Micro.We need to log every user interaction through Google Analytics.Is there any way开发者_如何学Python to have a bit of code executed every time
I\'m in the pre-design stages of a small application that I\'d like to write using Caliburn.Micro and C# / WPF. I\'m still learning the framework, but I like what I see so far.
A number of ASP.NET data bound controls expose an EmptyDataTemplate that is rendered when the control is bound to an empty data source. In my WP7 app, I too would like to display a friendly messag开发