New Post: PropertyChangedBase NotifyOfPropertyChange()
Yesterday I finished porting a quite complex application to Caliburn, and started testing it. I had a nasty bug which took a while to find and solve, which is basically like this:A background thread...
View ArticleNew Post: PropertyChangedBase NotifyOfPropertyChange()
This behaviour is by design, and caused by the fact that WPF is the only platform supporting auto-marshalling for PropertyChanged events (which is a pity!). Have a look at this request, you should be...
View ArticleNew Post: PropertyChangedBase NotifyOfPropertyChange()
An #IF directive would have been enough to handle this case, or an optional parameter for NotifyOfPropertyChange(), to specify If Caliburn should do the marshaling or leave it to the current UI...
View ArticleNew Post: PropertyChangedBase NotifyOfPropertyChange()
I agree with you (as stated in the referenced request). Unfortunally, the #IF directive would require a CM rebuild from the sources, that's why I would have preferred an extension point (such as either...
View ArticleNew Post: Muliple of the same control in a view
Hi, I need to show the same usercontrolview in one parent view mulitple times, associated with the same viewmodel. E.g. if i have a control for paging I want it at both the top and bottom. When I add...
View ArticleNew Post: Win 8.1 binding issue?
Thanks tibel ... ill give that a go. Because it only shows on 8.1 preview i need to get my dev box to 8.1 first to try this out ... or do some remote debugging on my RT device. As soon as i have...
View ArticleNew Post: WinRT Suspend/Resume
Any news on this?, anyone has recommendations about how to properly handle termination/resume in WinRT apps with Caliburn Micro? Thanks /C.
View ArticleNew Post: StorageHandler InAppSettings on Windows Phone 8
Hi, Does using InAppSettings allow data to be maintained after upgrading or re-installing an App? From what I have read, it does, but testing this on an actual phone (using the Application Deployment...
View ArticleNew Post: Muliple of the same control in a view
The default implementation of Screen and Conductor implements IViewAware and provides view caching, this means that the same view-model will receive the same view object every time a view is resolved....
View ArticleUpdated Wiki: The Service Locator
The Service Locator Caliburn.Micro comes pre-bundled with a static Service Locator called IoC. For those unfamiliar, a Service Locator is an entity that can provide another entity with service...
View ArticleNew Post: ModalContentPresenter with Caliburn.Micro
I have found the ModalContentPresenter class presented at http://programmingwithpassion.wordpress.com/2012/07/01/displaying-modal-content-in-wpf/ . Unfortunately, the code conventions are not working...
View ArticleUpdated Wiki: The Simple IoC Container
The Simple Container Caliburn.Micro comes pre-bundled with a Dependency Injection container called SimpleContainer. For those unfamiliar, a dependency injection container is an object that is used to...
View ArticleUpdated Wiki: The Service Locator
The Service Locator Caliburn.Micro comes pre-bundled with a static Service Locator called IoC. For those unfamiliar, a Service Locator is an entity that can provide another entity with service...
View ArticleUpdated Wiki: The Simple IoC Container
The Simple Container Caliburn.Micro comes pre-bundled with a Dependency Injection container called SimpleContainer. For those unfamiliar, a dependency injection container is an object that is used to...
View ArticleUpdated Wiki: Design-Time Support
Design-Time Support Enabling Caliburn.Micro inside the Visual Studio designer (or Blend) is quite easy.You have to set a Desinger-DataContext and tell CM to enable its magic in your view XAML:...
View ArticleNew Post: StorageHandler InAppSettings on Windows Phone 8
upgrading should carry thorough, but after a crash I had with my application due to licensing issues I lost 3 months of data on my phone I say 3 months because I hadn't done a backup of the data...
View ArticleNew Post: CMContrib & Caliburn, issues with DialogBox;
I'm new in the world of C#, and Caliburn.Micro and any otherthing, but i'm learning :). anyway, I try to use the Caliburn.Micro.Contrib DialogBox out of th box, and I'm having issues to display it. In...
View ArticleNew Post: CMContrib & Caliburn, issues with DialogBox;
Have you added Caliburn.Micro.Contrib dll to assembly source, overriding SelectAssemblies in your bootstrapper? I get hit with that every time :-)
View ArticleNew Post: CMContrib & Caliburn, issues with DialogBox;
Yes i have done that as well, but no luck !
View ArticleNew Post: MVVM issues with the concept of IResult with OpenFileDialog etc
I am new to Caliburn.Micro and usually if you are new to MVVM you tend to ask those questions like how should I display an OpenFileDialog with MVVM. After reading about IResults I have some issues with...
View Article