Updated Wiki: Introduction
Introduction When my “Build Your Own MVVM Framework” talk was chosen for Mix10, I was excited to have the opportunity to show others what we had been doing in Caliburn in a simplified, but powerful...
View ArticleUpdated Wiki: Cheat Sheet
Cheat Sheet This serves as a quick guide to the most frequently used conventions and features in the Caliburn.Micro project. Wiring Events This is automatically wiring events on controls to call...
View ArticleUpdated Wiki: Basic Configuration, Actions and Conventions
Basic Configuration, Actions and Conventions Open Visual Studio and create a new Silverlight 4 Application called “Caliburn.Micro.Hello”. You don’t need a web site or test project. Add a reference to...
View ArticleUpdated Wiki: Introduction
Introduction When my “Build Your Own MVVM Framework” talk was chosen for Mix10, I was excited to have the opportunity to show others what we had been doing in Caliburn in a simplified, but powerful...
View ArticleUpdated Wiki: Customizing The Bootstrapper
Customizing The BootstrapperIn the last part we discussed the most basic configuration for Caliburn.Micro and demonstrated a couple of simple features related to Actions and Conventions. In this part,...
View ArticleUpdated Wiki: All About Actions
All About ActionsWe briefly introduced actions in Pt. 1, but there is so much more to know. To begin our investigation, we’ll take our simple “Hello” example and see what it looks like when we...
View ArticleUpdated Wiki: Working with Windows Phone
Working with Windows Phone In version 1.0 we had pretty good support for building apps for WP7, but in v1.1 we’ve taken things up a notch. Let’s look at the same HelloWP7 sample that we did previously,...
View ArticleUpdated Wiki: IResult and Coroutines
IResult and Coroutines Previously, I mentioned that there was one more compelling feature of the Actions concept called Coroutines. If you haven’t heard that term before, here’s what wikipedia1 has to...
View ArticleUpdated Wiki: The Event Aggregator
The Event Aggregator Caliburn.Micro comes pre-bundled with an Event Aggregator, conveniently called EventAggregator. For those unfamiliar, an Event Aggregator is a service that provides the ability to...
View ArticleUpdated Wiki: The Service Locator
The Service Locator Caliburn.Micro comes pre-bundled with a static Service Locator called IoC. For those unfamiliar, a Service Locator is an entity that can provide another entity with service...
View ArticleClosed Task: Update Documentation [346]
Some parts of the documentation are out-dated and others are missing completely.
View ArticleEdited Issue: Exception on Toggle in/out of view in Win8.1 [354]
In Win8.1, if you have a ItemsControl derived type that removes and re-adds some portion of its children and you're using the c:View.Model binding on a data template to convert child view models into...
View ArticleNew Post: showdialog and databinding
hi, I show a dialog that binds some simple properties, but I experience a problem whereby the dialog pops up and then the fields bind after the popup this isn't very nice to look at. Is there someway...
View ArticleNew Post: Single instance wpf app
BladeWise wrote: Check the latest source code from the project I posted above. I added a CM sample. I've added you solution to my CM project and can display the arguments passed from a second instance....
View ArticleCreated Unassigned: Error using updated library in Win 8.1 [357]
I have updated the Caliburn.Micro, Caliburn.Micro.Extensions, Callisto and Windows.UI.Interactivity dll's in my windows store 8.1 project ( Dev machine is windows 8.1 pro ) , and I have pulled them in...
View ArticleCommented Unassigned: Error using updated library in Win 8.1 [357]
I have updated the Caliburn.Micro, Caliburn.Micro.Extensions, Callisto and Windows.UI.Interactivity dll's in my windows store 8.1 project ( Dev machine is windows 8.1 pro ) , and I have pulled them in...
View ArticleClosed Unassigned: Error using updated library in Win 8.1 [357]
I have updated the Caliburn.Micro, Caliburn.Micro.Extensions, Callisto and Windows.UI.Interactivity dll's in my windows store 8.1 project ( Dev machine is windows 8.1 pro ) , and I have pulled them in...
View ArticleNew Post: Binding control event to System.Action or any other delegate?
Question as above, short example: ViewModelpublic System.Action SomeAction; private void Function1() {} private void Function2() {} //in code somewhere SomeAction = new System.Action(Function1); //in...
View Article