New Post: Thank you.... and one final question
Firstly thanks to those who have helped me out over the last month or so transform my app from code behind to a well structure caliburn/mvvm pattern. Its now so easy to manage! I have a final question...
View ArticleNew Post: Thank you.... and one final question
You can create a list of scores groups, with specific view-models and views. What I mean is, every set of scores has to be wrapped in a ScoresGroupViewModel, something likepublicclass...
View ArticleNew Post: Message.Attach on a custom event
Since CM relies on the System.Windows.Interactivity.EventTrigger, it shares some limitations with it. In particular, the event needs to be either a EventHandler<T> or EventHandler, if I remember...
View ArticleNew Post: Thank you.... and one final question
ah that's how its done! great thanks I was pretty close in my attempts I'll give it a whirl tonight and let you know how I get on
View ArticleNew Post: Win RT Settings Flyout - Windows 8.1
I've scoured the internet and found very little guidance on the settings flyout for 8.1. It does appear different than the Win 8 implementation and what little I could find on Win 8 doesn't seem to...
View ArticleNew Post: Win RT Settings Flyout - Windows 8.1
I've figured how to override the back arrow on the settings flyout. I made my own version of SettingsWindowManager and instead of calling settingsFlyout.Show, I call settingsFlyout.ShowIndependent();...
View ArticleNew Post: Thank you.... and one final question
It works! :-) It makes things so much easier just to enumerate the list rather than hard coding each control thanks very much and have a great weekend!
View ArticleNew Post: Please Add CanDeactivate function to Screen
Did anyone experience problems while using a tabcontrol and this tactic? I can't get it to work correctly. The child screen stays the same (correct), but the tab control itself shows a different tab...
View ArticleNew Post: WPF button Command vs Content
<Button x:Name="CancelCommand" Content="Cancel" /> <<Convention will work<Button Content="Cancel" Command="{Binding CancelCommand}" /> << but you lose some automagic abilities...
View ArticleNew Post: [WP8] Implementing simple loading overlay
me personally I wouldn't do with a popupoverly using windowmanager, but have something on the shell of your Wp8 that can popup based on an event sent from IEventAggregator? All it would is some border...
View ArticleNew Post: Unhandled Exception in Boostrapper
Hi, I too have tried the same thing. It seems that it will work only for exceptions arising from the main (UI) thread. I have raised an issue here - https://caliburnmicro.codeplex.com/workitem/356
View ArticleCreated Unassigned: MultiThreading Unhandled Exception not caught in...
Overriding the OnUnhandledException doesn't seem to work for exceptions raised from within spawned threads. I verified this by raising an exception from the UI thread. That is caught as expected. Any...
View ArticleCommented Unassigned: MultiThreading Unhandled Exception not caught in...
Overriding the OnUnhandledException doesn't seem to work for exceptions raised from within spawned threads. I verified this by raising an exception from the UI thread. That is caught as expected. Any...
View ArticleNew Post: Multiple Views to a viewmodel mapping - not working
Have a Viewmodel - ElasticityCurvesViewModel.cs under namespace PO.ViewModels.Historical under Historical folder. Now I need to map this viewmodel to two views - ElasticityCurvesCurveView.xaml and...
View ArticleCommented Unassigned: MultiThreading Unhandled Exception not caught in...
Overriding the OnUnhandledException doesn't seem to work for exceptions raised from within spawned threads. I verified this by raising an exception from the UI thread. That is caught as expected. Any...
View ArticleClosed Unassigned: MultiThreading Unhandled Exception not caught in...
Overriding the OnUnhandledException doesn't seem to work for exceptions raised from within spawned threads. I verified this by raising an exception from the UI thread. That is caught as expected. Any...
View ArticleSource code checked in, #9bef6aec7efbc3fdb58354acea53361773818c29
prepare NET40 backport (not supported)
View ArticleSource code checked in, #4e8d455e458810145ef61bd5eb13d682e877b726
add NET40 projects and solution
View ArticleNew Post: Multiple Views to a viewmodel mapping - not working
<ContentControlcal:View.Context="{Binding CurrentView, Mode=TwoWay}"cal:View.Model="{Binding}"/>CurrentView = string property in viewmodel that is set to what the name of the view you want to...
View Article