New Post: WinRT Caliburn.Micro with tab's and serailization.
Hi all! Caliburn micro very cool MVVM framework, and i like it to use in my SL and WPF projects. Now i have some question about WIN RT version of Caliburn: What about serialization of model before app...
View ArticleCreated Issue: DefaultCloseStrategy.Execute throws NullReferenceException [301]
DefaultCloseStrategy chokes up, when I use coroutines in CanClose method of ViewModel (using Screen as base) and throws NullReferenceException:```public override void CanClose(Action<bool>...
View ArticleNew Post: ViewModel Based Navigation, Maintaining State and OnSearchActivated
Hi, I'm working on my first app and I'm using C.M to get my head around MVVM. It's a simple media player for Win8 RT. I've ended up using a ViewModel-based navigation pattern with a...
View ArticleNew Post: UserControls Library with Caliburn.Micro
I used the sample app tutorial to create a basic bootstrapper and it is working. I wanted to have all the UserControls in a separate library and just use those controls in the ShellView. The sample WPF...
View ArticleCreated Issue: INavigationService not configured [302]
It seems that when using DisplayRootViewFor<T>(), the RegisterNavigationService (on PrepareViewFirst) method is not called and you end up with null passed in for the INavigationService. This...
View ArticleCreated Issue: EvaluateParameter and special values [303]
Hi!I would like a parameter to be bound to a textBox's Text property. In such case, I don't see any way for CM to distinguish if the parameter is already evaluated or not.E.g.: if the user types...
View ArticleNew Post: UserControls Library with Caliburn.Micro
I was able to resolve the issue by overiding SelectAssemblies like below. protected override IEnumerable<Assembly> SelectAssemblies() { List<Assembly> assemblies = new...
View ArticleReviewed: Caliburn.Micro v1.5.1 (Apr 02, 2013)
Rated 5 Stars (out of 5) - My first deep dive into MVVM with WPF was a complete success thank to this framework. Very easy to work with and the EventAggregator is awesome. Thank you!
View ArticleNew Post: Telerik RadDiagram and Caliburn.Micro
I've figured out almost all of the issues I was having. I wish I could attach the sample project, but I can't here. I've included the main code below. Fixed Copy/Paste of Shape by using...
View ArticleCommented Issue: INavigationService not configured [302]
It seems that when using DisplayRootViewFor<T>(), the RegisterNavigationService (on PrepareViewFirst) method is not called and you end up with null passed in for the INavigationService. This...
View ArticleNew Post: WinRT Caliburn.Micro with tab's and serailization.
Currently CM doesn't add any support for Platform Lifecycle Management (PLM) on WinRT. It's certainly a goal which I'm looking to work towards for the next version however there are some real problems...
View ArticleNew Post: Creating actions in code
here is the cheat sheet http://caliburnmicro.codeplex.com/wikipage?title=Cheat%20Sheet
View ArticleNew Post: UserControls Library with Caliburn.Micro
Solved: Modified the constructor to public RibbonControlViewModel(IWindowManager windowManager, IEventAggregator eventAggregator) { this._windowManager = windowManager; this._eventAggregator =...
View ArticleCreated Issue: Execute.OnUIThread to allow specifying DispatcherPriority [304]
Some tasks, such as adding a lot of items in the TreeView could be long enough and I opt to execute them on UI thread with DispatcherPriority.ApplicationIdle.It would be nice to have parameter with...
View ArticleNew Post: Telerik RadDiagram and Caliburn.Micro
I spoke too soon. The Copy/Paste doesn't work 100% as the RadDiagramShape doesn't get the proper DataContext the way things are wired up. If I figure this out, I'll post a solution in case anyone else...
View ArticleNew Post: WinRT Caliburn.Micro CollectionViewSource and design time binding...
Why WInRT sample project hasn't sample of design time data binding or using CollectionViewSource items? It would be great.. Can someone share sample of it? :)
View ArticleNew Post: Creating actions in code
Have a look at the Parser. It transforms the short, textual action syntax into the actual actions and configures them on the target element. I think that should help you move in the right direction.
View ArticleNew Post: Message.Action in ListBox?
I have templated a ListBox, and I'm having trouble getting the Action to work. Here's a rough example of how it's templated.<ListBox.ItemTemplate> <DataTemplate> <ToggleButton...
View ArticleNew Post: ChangeLog
Hi guys, Is there some kind of changelog available? I've searched the site and the source but didn't find any. I'd like to assess the impact of upgrading from 1.4 to 1.5. Thanks! Cheers, M.
View Article