New Post: [WinRT] Attaching message to non-routed events
Hi,I am currently developing on WinRT custom control that exposes one event declared as follows: public event EventHandler XChanged; protected virtual void XChanged() {...
View ArticleNew Post: [WinRT] Attaching message to non-routed events
Hi,this is actually an issue with WUI (see https://github.com/jlaanstra/Windows.UI.Interactivity/issues/11) and not Caliburn.Micro itself.In WUI it should be fixed already, but Caliburn.Micro is not...
View ArticleNew Post: Another ContextMenu Question ..
Excellent! I'm glad I was able to help you discover a solution that works for your project! Once you can master ContextMenu's with caliburn micro you'll find yourself with a WAYYY better understanding...
View ArticleCommented Issue: VisualStateManager Storyboard Start/Stop [211]
See this post for more info:http://caliburnmicro.codeplex.com/discussions/338305I've added a small application to show whats going wrong.Thanks!Comments: Is this a question or an issue? As you never...
View ArticleNew Post: Extra Viewmodel deactivation using SimpleMDI example.
Hi,I'm reasonably sure there's simple explanation for this behaviour that's just passed me by.Using the SimpleMDI as a starting point to create a simple example, I've made the TabViewModel a OneActive...
View ArticleNew Post: Extra Viewmodel deactivation using SimpleMDI example.
OnDeactivate has a bool parameter called "close". If only another tab gets activated the previous get deactivated (close=false). If you close a tab OnDeactivated() is called but with close=true, so you...
View ArticleNew Post: Extra Viewmodel deactivation using SimpleMDI example.
Ah, thanks!I had tried altering my example slightly to include a manual call to OneActive.DeactivateItem(item, true) which was giving me the result I was expecting, but I wasn't convinced I understood...
View ArticleNew Post: WinRT navigation service
Hi Nigel,I've tried to do exactly what you have specified - use ViewModel first navigation to navigate to a ShellViewModel + ShellView which has a frame on it, which I then register with my container...
View ArticleNew Post: WinRT navigation service
Sorry about that forgot one little detail. Because the Frame control lives within the ShellView it "inherits" ShellViewModel as it's DataContext. The binding Caliburn implements between view and view...
View ArticleNew Post: VisualStateManager Winrt
i don´t understand how to use the VisualStateManager with Caliburn Micro.i have a Group in XAML:<VisualStateManager.VisualStateGroups <!-- Visual states reflect the application's view state...
View ArticleNew Post: VisualStateManager Winrt
This might helphttp://compiledexperience.com/blog/posts/visual-state-manager-and-coroutinesthis assumes you place the VisualStateManager somewhere in your xaml.I have don't much with WinRT yet but on...
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 ArticleNew Post: [WinRT] IDisposable in ViewModel
I'm new to using Caliburn Micro, so there are a few things I don't understand yet. I have a WinRT application that works, but I'm concerned about resource usage. Here's the situation:I have a ViewModel...
View ArticleClosed Issue: Possible Design-Time Improvements [261]
See http://caliburnmicro.codeplex.com/discussions/370505Comments: Fixed.
View ArticleNew Post: WebBrowser in CaliburnMicro userControl not working
HiI added webBrowser in userControl defined in Bootstrapper.In Load event I set the Navigation function, but nothing happened .. Can anyone help me?Thank you
View ArticleNew Post: [WinRT] IDisposable in ViewModel
I was able to use a custom FrameAdapter as shown here: http://caliburnmicro.codeplex.com/workitem/193 to get Deactivate to close when I'm navigating back from a page. Unfortunately, I'm still confused...
View ArticleNew Post: Windsor with Caliburn Micro Nuget package
Hello All, I just wanted to let you know that I've created a nuget package for using Castle Windsor with Calburn micro. You can grab it from nuget, it's named caliburn.micro.windsor. It contains...
View ArticleNew Post: [WinRT] IDisposable in ViewModel
It seems that there's an issue with NavigationCacheMode. If I set in in XAML it doesn't seem to work. If I set in in the constructor of the class it works. When set to Enabled, I get the behavior that...
View ArticleNew Post: Windows.UI.Interactivity ... any idea for when the latest will be...
I have posted about this before. I was wondering if updating the Windows.UI.Interactivity assembly is anywhere in your schedule?The current version has some issues which make me reluctant to use...
View Article