Commented Issue: WinRT: Updating WUI breaks Caliburn.Micro [249]
After updating Windows.UI.Interactivity to 1.0.8 the back button is always enabled in the WinRT sample.Comments: In current WUI version there seem to be a few issues fixed, but still breaks...
View ArticleNew Post: Screen swallowing exception in DisplayName
Good day,I've stumbled across a problem.If, for example, there is some sort of exception in the DisplayName property getter for a Caliburn.Micro.Screen, no exception bubbles up throw the framework when...
View ArticleNew Post: Screen swallowing exception in DisplayName
Generally you should avoid throwing exception in property getters.The framework does not care about this property. It is only used by Xaml Binding. WPF is catching binding exceptions so you wont see them.
View ArticleClosed Issue: OnDeactivationProcessed inside Conductor not working as...
If you look at the way OnDeactivationProcessed is called inside Conductor.cs, it is only used once and then only when the active item is not allowed to close. This does not make any sense.You would...
View ArticleNew Post: Screen swallowing exception in DisplayName
tibel,No disagreement that I should avoid throwing exceptions in getters. The actual exception I introduced was not intentional and I ended up spending extra time when things did not occur as...
View ArticleSource code checked in, #640f09428ef3
Add BackStack property to NavigationService in WP7
View ArticleEdited Issue: Add BackStack property to NavigationService in WP7 [224]
In WP 7.1, a BackStack property was added to the navigation service that provides an enumerable of navigation history. Without this property, it is not possible to reliably remove all items from the...
View ArticleCommented Issue: Support missing for VS2012 (newer version of Blend SDK) [268]
The XAML designer of Visual Studio 2012 doesn't work with Caliburn.Micro 1.4. It always shows an Exception and in the error list i find the following message:ActionMessage from assembly...
View ArticleEdited Issue: Add Mid-Tier device checking [213]
See http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2012/02/27/windows-phone-sdk-7-1-1-update-ctp-what-s-new.aspx
View ArticleCommented Issue: Add Mid-Tier device checking [213]
See http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2012/02/27/windows-phone-sdk-7-1-1-update-ctp-what-s-new.aspxComments: You should not use DeviceExtendedProperties is not absolutely...
View ArticleCommented Issue: Add Mid-Tier device checking [213]
See http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2012/02/27/windows-phone-sdk-7-1-1-update-ctp-what-s-new.aspxComments: I don't think we need to include this, as it seems to be really simple...
View ArticleClosed Issue: BindableCollection.AddRange() does not fire CollectionChanged...
Is it a bug or normal behaviour?
View ArticleNew Post: Designtime support when there is no App.xaml
Arrrgh, I just upgraded to 1.4 and now the designtime support does not work anymore. The Views cannot be resolved anymore.
View ArticleNew Post: Designtime support when there is no App.xaml
It seems that in Caliburn Micro 1.4 I have to override SelecteAssemblies in my DesignTimeBootstrapper using System.Collections.Generic; using System.Reflection; using Caliburn.Micro; using Common;...
View ArticleNew Post: Navigation for Win Phone 8
I'm running into problems with navigation on WinPhone 8. When I do the following:_navigation.UriFor<MyViewModel>().WithParam(vm => vm.Id, 1).Navigate();An ArgumentException is thrown in...
View ArticleNew Post: Are coroutines obsoleted by Async Targeting Pack?
What other uses than asnyc progamming does IResult have?
View ArticleClosed Issue: Message.Attach problem with view [269]
cal:Message.Attach="PreferencesViewCallback($view,OrderItem)"this returns not the origin view but the view that has this function.Is this normal?
View ArticleNew Post: Action.Target string
In the docs, it states the following about using a string value in an Action.Target:Action.Target– Sets both the Action.Target property and the DataContext property to the specified instance. String...
View Article