New Post: Changing DataContext, does not change target
Trivial solution: The bootstrapper wasn't correctly setup causing CM to work in "DesignMode" and not properly binding to the target. I think older CM versions didn't assume DesginMode by default.
View ArticleNew Post: Viewmodel not found
I have an AppView and in this view I have an CustomerListView and offcource the viewmodels with the same name. My AppView looks like:<Window x:Class="Klanten_beheer.Views.AppView"...
View ArticleCommented Issue: IsolatedStorageException in Save() EndStoring...
There is some issue with Save method in IsolatedStorageSettings.ApplicationSettings.Save();Stack trace:5 System.IO.IsolatedStorage.IsolatedStorageFileStream..ctor 908 6...
View ArticleNew Post: Please Add CanDeactivate function to Screen
I've dealt with the tab control issue before. It is solvable, but it requires some hacking. I've written up a WPF attached behavior that can handle this. It was originally written with Prism in mind,...
View ArticleNew Post: No DisplatRootViewFor method for Windows Phone 8
Hello! Thank you for your nice framework! How can I load different Views on startup? There is no DisplatRootViewFor method in Windows Phone version. Now I use INavigationService and its Navigate method...
View ArticleNew Post: Bootstrapper.OnStartup never called, following the Basic...
I already asked this question on StackOverflow. I am trying to create a simple WPF application. However, I am keeping the views, models and bootstrapper in separate class library and calling it from a...
View ArticleNew Post: Bootstrapper.OnStartup never called, following the Basic...
Found the issue, I was not calling Initialize() inside the ctor
View ArticleNew Post: Closing only one Window
I have one ViewModel and 2 Views for that ViewModel - "View" and "Detail". First View is for displaying grid for all items and second is for displaying details of selected item where user can change or...
View ArticleCreated Unassigned: Null reference exception [364]
Hi,We are seeing NullReferenceException in the production machine as soon as user logs off. It is happening intermittently at customer site and we are not able to reproduce in our environment. It is...
View ArticleNew Post: OnActive doesn't fire on VM if you navigate in OnInitialize method
Hello! I have 3 VM: StartVM, ListItemsVM, ItemDetailsVM Let\s say, I ran app from secondary tile and I need to open ItemDetailsVM with some Id. But I also need to open ListItemsVM for create navigation...
View ArticleNew Post: OnActive doesn't fire on VM if you navigate in OnInitialize method
Actually, how to delete navigation parameter in INavigationService? I've tried to replace Source in BackStack item but it still has one when I navigated back.
View ArticleNew Post: Caliburn action message swallows exceptions when working with async...
The unhandled exception handler seems to fire if you change the action method to return void rather than Task eg: public async void BeginProcess() { throw new Exception("Test"); } I was always under...
View ArticleNew Post: Non-generic Bootstrapper obsolete?
This no longer seems to be current. Start is now called Initialize and the generic Bootstrapper<T> is gone.
View ArticleNew Post: Which samples can be used with WPF?
Hi, Is there any instructions available how to port the samples so the work on WPF. Even if the code are WPF compatible it seems some work are for sure needed to get the code running as a WPF example....
View ArticleNew Post: IDataErrorInfo Not calling Item on property change.
I have to start by saying that this framework is awesome! I love using it. Great job! I'm having an issue with IDataErrorInfo Item not being called when using Name convention binding on a context view....
View ArticleNew Post: Methods for providing view model dependencies
The only way I have found to do what you're wanting to do is: 1) Include resolution of the container in the view's constructor and store the container internally 2) Resolve the view using Prism Region...
View ArticleNew Post: Methods for providing view model dependencies
The only way I have found to do what you're wanting to do is: 1) Include resolution of the container in the view's constructor and store the container internally 2) Resolve the view using Prism Region...
View ArticleNew Post: Nested View Activation
I have a similar situation, but the _nested property, instead of being set in the constructor, is exposed as a public property that can be changed, something like this:public NestedViewModel Nested {...
View ArticleNew Post: Error trying to convert Caliburn.Micro.HelloScreens sample to WPF
Hi, Has this been solved? I have the same problem. Please post the solution if you solved it.
View ArticleNew Post: Viewmodel not found
Hi, I have simillar issue on Windows Phone 8 App. I found that TypeNameCache doesn't have any of ViewModels after injecting thats why It can't find the view model.
View Article