Commented Issue: ConventionManager.HasBinding() does not always work with...
I have run into an issue where i have used a prioritybinding on the title property of the root window's view, it seem the implementation of HasBinding uses "BindingOperations.GetBindingExpression() !=...
View ArticleNew Post: ViewModel resolution / attachement Problem: Can't get started with WP8
I encountered some issues when I was doing this as well, but I was also trying to add in MEF. :) I've got a sample for Win8 and WinPhone8 you can take a look at...
View ArticleNew Post: ViewModel resolution / attachement Problem: Can't get started with WP8
Maverick89 wrote:Hey,I find it really a pity the docs are behind, coz I like CM's ideas, but using a not well documented framework in production (I thought of using it on WPF with a project I do at...
View ArticleSource code checked in, #5f63ca29da0c
[WPF] Fix ConventionManager.HasBinding() does not always work with prioritybinding
View ArticleEdited Issue: ConventionManager.HasBinding() does not always work with...
I have run into an issue where i have used a prioritybinding on the title property of the root window's view, it seem the implementation of HasBinding uses "BindingOperations.GetBindingExpression() !=...
View ArticleNew Post: Question about ILog and WinRT blenadbility
Hi @all,I want to use the LogManager in my code as well as I think this is a very good thing. So I followed the Approach of Caliburn.Micro.Logging. I also Mako use of blendability by adding a...
View ArticleNew Post: [WinRT] Loading ViewModel data async
Hi,I am new to CM and I'm using it for a new WinRT project. I have a view model which has an ObservableCollection property which is bound to my View. Once the ViewModel is instantiated I want to load...
View ArticleNew Post: [WinRT] Loading ViewModel data async
OK, maybe I should have tested it first before I posted.Seems it is as simple as marking the OnInitialize method which I override in the view model as async and then call my async LoadData method from...
View ArticleNew Post: [WinRT] Loading ViewModel data async
In your example above you shouldn't need to make OnInitialize as async, the only time a method needs to be marked as async is when you're using the await keyword within the method (like you have in...
View ArticleNew Post: [WinRT] Loading ViewModel data async
Thank you Nigel. Learning something new every day :)
View ArticleNew Post: AvlonDock 2.0 and Caliburn Micro
I got that part working based on the MVVM example. Looks like this now<avalonDock:DockingManagerAnchorablesSource="{Binding Tools}"DocumentsSource="{Binding Scripts}"ActiveContent="{Binding...
View ArticleNew Post: Use actiobmethods in a AvalonDock that takes Commands
I'm working on integrating AvalonDock in my Caliburn.Micro application.AvalonDock uses as some command Properties that triggers when a Docking panel is closed for example, I need to map these commands...
View ArticleNew Post: ActionMessage doesnt work in Caliburn Micro 1.4.1
When i try to do smthing like that:<customCalendar:Calendar ContentPropertyNameForDatesSource="NumberOfTasks" DatePropertyNameForDatesSource="CurrentDate" DatesSource="{Binding CalendarItems}"...
View ArticleNew Post: ActionMessage doesnt work in Caliburn Micro 1.4.1
Please have a look at the "Long Syntax" section in the Cheat Sheet.
View ArticleNew Post: AvlonDock 2.0 and Caliburn Micro
Also you might have a look at Gemini from Tim Jones.
View ArticleNew Post: Custom control events bug?
And other bindings with the ViewModel are working?Maybe you can create a sample to show your issue, as at the moment we can only guess.
View ArticleNew Post: AvlonDock 2.0 and Caliburn Micro
Thanks saw that one, but it was a bit hefty for me, it takes a way the Micro form Caliburn. But the above stuff works nice.
View ArticleNew Post: Question about ILog and WinRT blenadbility
Hi,It's a WinRT App. First call to LogManager is in configuration method. My workaraound to check Execute.IsDesignMode in front of call to Log.
View ArticleNew Post: Question about ILog and WinRT blenadbility
only reason I ask is that you appear to be using a custom variant of ILog. I guess the first thing to check is it the Log or is it the DesignTime support that is throwing the error..
View ArticleNew Post: reactivate exiting window using WindowManager
SubViewModel is derived from Screen. Screen.IsActive is true as long as the window is not closed, so calling Activate will not refocus the existing window. It will just do nothing.
View Article