Updated Wiki: Documentation
DocumentationGetting Started IntroductionObtain and Build the CodeNugetCheat SheetSoup to Nuts Basic Configuration, Actions and ConventionsCustomizing The BootstrapperAll About ActionsWorking with...
View ArticleNew Post: Binding the value of a slider to a double Property raises exception
You were right, removing the default binding solved the problem. I did not expect a binding to Visibility. Thank you.
View ArticleNew Post: Can you manually deactivate/dispose a ViewModel?
Thanks for the replies. The "parent" VM that is in a conductor stays alive throughout the application (it handles the messages), but the "child" VMs that are not in conductors are created manually and...
View ArticleNew Post: Questions ICloseStrategy and SequentialResult
Hello, Can we actually benefit from the ICloseStrategy interface unless we use it explicitly, and what i mean by that is that when the Item we are calling Close upon is either a IConductor or IScreen...
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 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 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 ArticleNew Post: Bindings Not Working with Custom Content Control
In my case I solved it by using the (undocumented) Method 'AddCildResolver'. // ChildResolver for the AdornedControl BindingScope.AddChildResolver((p) => { bool result = p ==...
View ArticleCommented Unassigned: [Dev Question] Action guard method re-evaluation [312]
I wanted to get opinions from the dev's on items like below see https://caliburnmicro.codeplex.com/discussions/442668 for original source.On the one hand something like this could be integrated into...
View ArticleNew Post: Help with ApplicationCloseStrategy from the HelloScreens Sample
The ApplicationCloseStrategy is driving me crazy, i understand what rob has explained in general but the details of the execute method is killing me, can somebody please explain it in detail or give a...
View ArticleNew Post: ComboBox Binding Problem
I am having a similar issue. Mine says it cannot find view for "my.model". Did you figure it out?
View ArticleNew Post: caliburn.micro not showing dialog after application install
hi. i've got a bit of a problem with caliburn micro 1.4.0 and wpf app developed in visual studio 2010 targetting .net framework 4.0. So here's the rundown of the problem. I've created a visual studio...
View ArticleNew Post: caliburn.micro not showing dialog after application install
I seen you post on StackOverflow and didn't get around to posting. I don't think this is anything specific to do with Caliburn.Micro, it sounds like you may be missing required DLL's in your...
View ArticleUpdated Wiki: Documentation
DocumentationGetting Started IntroductionObtain and Build the CodeNugetCheat SheetSoup to Nuts Basic Configuration, Actions and ConventionsCustomizing The BootstrapperAll About ActionsWorking with...
View ArticleNew Post: caliburn.micro not showing dialog after application install
i've checked both my release folder for my project, and the installation folder and there's nothing different. the dll's are copied. do they need to be registered? caliburn.micro.dll and...
View ArticleNew Post: Return the value of a Property from child ViewModel to Parent...
In my WPF MVVM app, using Caliburn.Micro, I have a ViewModel, CreateServiceViewModel that, on a button click, opens a GridView in a seperate window for the User to chose a Row from. I created another...
View ArticleNew Post: How to Display Messages at Application Startup
Thanks, that got me on the right track. I determined there are two ways to handle this. Leave Application.Current.ShutDownMode as/is and change it on the fly in my Shell view model if I'm doing a...
View ArticleNew Post: Return the value of a Property from child ViewModel to Parent...
You don't really indicate the method you use to open the secondary window or it's life cycle. For example, do you create an instance of the MemberSearchViewModel and use the window manager ShowDIalog()...
View Article