Commented Unassigned: NullReferenceException in TaskController on WP8 [337]
Hi,I'm getting null ref errors in TaskController.OnTaskComplete method because the "request" field is null. I dug deeper and while I don't have a solid understanding of why it's happening here is what...
View ArticleNew Post: Button displaying a context menu
Have you tried checking if the Tag property correctly holds a reference to the view-model? And what about the PlacementTarget? I would first check if everything is in place, then I would turn on CM...
View ArticleNew Post: Button displaying a context menu
The Tag property has the correct reference to the view-model, but I can't find a way that binds it correctly to the TargetWithoutContext. The PlacementTarget the way I did it in my sample doesn't work.
View ArticleNew Post: Crash when compiling via build machines
We went ahead and just cloned the build machine that produced working builds to address this issue. We're lucky we had a machine that built properly otherwise I could see us spending days (if not...
View ArticleNew Post: Button displaying a context menu
Uhmmm, is it a WPF project? I tipically bind directly to the PlacementTarget.DataContext property or to the TargetWithoutContext property, after it has been properly set. Can you try using the the...
View ArticleNew Post: Button displaying a context menu
OK, that's interesting! When I open the ContextMenu on my button through a right-click it does work correctly. So it really is a problem with the EventTrigger... Any idea on how I could fix this?
View ArticleNew Post: WinRT 8.1 support ?
YeFFreY wrote: Another issue that I'm facing is the support of AppBarButton inside CommandBar. Using the usual "x:Name" to VM method binding is not working, so I have to fallback to ICommand...
View ArticleNew Post: No support for Windows XP in Caliburn.Micro 2+?
As I've noticed that there will be no support for .NET 4 in CM 2. Is it a definitive decision? Believe me, I do love .NET 4.5 new features but because there is no .NET 4.5 for Windows XP I need to...
View ArticleNew Post: No support for Windows XP in Caliburn.Micro 2+?
We cannot support .NET 4.0 in portable code as INotifyCollectionChanged is missing there. For details see https://twitter.com/davkean/status/329658035490418688
View ArticleNew Post: No support for Windows XP in Caliburn.Micro 2+?
Net 4 can be supported. You just have to have a second project file targeting explicitly .NET 4, just as CM 1.x did. The platform enlightenment pattern can still be used to keep your head sane.
View ArticleNew Post: WinRT 8.1 support ?
I switched to 2.0-alpha and adding the following (usual) thing works !<Hub Style="{StaticResource ActiviteHub}" caliburn:Message.Attach="[Event SectionHeaderClick] = [ShowDetails($eventArgs)]" >...
View ArticleNew Post: Login dialog from Bootstrappers OnStartup method
I know this is an old post...but since absolutely none if the answers worked for me I'm going to assume the original poster made the same mistake I just made(and I've done it before). When he showed...
View ArticleNew Comment on "Documentation"
Wanted to make a WPF application but receive only errors although I download Caliburn packages. No use for me
View ArticleEdited Feature: Make Portable Libraries [259]
For v2 we need to refactor to portable libraries.
View ArticleEdited Issue: [Win81] Support Windows 8.1 Store Apps [336]
Fix binding issues on Win81 and add conventions for (some of) the new controls.For binding issue see:https://caliburnmicro.codeplex.com/discussions/448464
View ArticleEdited Feature: [Win81] integrate new Behavior SDK from VS2013 [338]
Caliburn.Micro for Win 8.1 should use the new behavior SDK that is part of VS2013 instead of Windows.UI.Interactivity.Nigel: > Also because ActionMessage won’t have AssociatedObject from the SDK we...
View ArticleEdited Feature: [Phone, Win8] OnViewReady should be called on child views too...
I have a conductor that conducts pivot items, so I add items like this:```protected override void OnInitialize() { base.OnInitialize(); Items.Add(_createItemFactory()); ActivateItem(Items[0]);}```Then...
View ArticleEdited Feature: [Win81] Add conventions for Flyouts and Hubs [339]
Flyouts and Hubs have changed between Win 8 and Win 8.1, so the conventions currently don't work.
View ArticleCreated Task: Update Documentation [346]
Some parts of the documentation are out-dated and others are missing completely.
View ArticleNew Post: Single instance wpf app
Howdy, What would be the best way to create a single instance wpf app using caliburn.micro? The requirements are pretty simple, I'm using the latest version of both WPF, .Net and Caliburn and the...
View Article