New Post: ViewModelLocator or what ? Losing Data from another VIew
RegisterPerRequest, is used when you don't want the viewmodel to be used again. So think of it as NonShared in the MEF world.
View ArticleCommented Issue: Insert more easy and performant NotifyOfPropertyChange...
There are only 5 or 6 lines of code to insert to produce a more easy and performant way to use notification.[CallerMemberName from Silverlight & WPF...
View ArticleNew Post: Dynamically add button when loading viewmodel
I've come up with an approach that works. Whether it is the 'right' way to do this I don't know. I'm using Structuremap, as it's the container which I'm most familiar...
View ArticleNew Comment on "Screens, Conductors and Composition"
There is a problem with dialog handling i believe. Disabling all controls is lame doesnt seem to work as it should because if you had something disabled then it is going to enable all no matter what...
View ArticleUpdated Wiki: Working with WinRT
Working with WinRT Unlike other versions of Caliburn Micro the WinRT version doesn't use a Bootstrapper, the non ranty reason for this is that Windows.UI.Xaml.Application exposes most of it's...
View ArticleUpdated Wiki: Documentation
DocumentationGetting Started IntroductionObtain and Build the CodeNugetCheat SheetSoup to Nuts Basic Configuration, Actions and ConventionsCustomizing The BootstrapperAll About ActionsWorking with...
View ArticleNew Post: how to access all ViewModel property
Hi,How to access all ViewModel property for import and export setting in xml file, I'm using TabControl for navigation.Thanks.
View ArticleNew Post: How to use the caliburn.micro in the visual studio extension...
I want to use the caliburn.micro in visual studio extension project. I find it's hard to intergate theAppBootstrapper.
View ArticleNew Post: TabItem Header Name
I'm try this example TabControl Navigation caliburn .micro if using style for TabControl not set TabItem header name, What is the...
View ArticleUpdated Wiki: Nuget
Nuget Package Installation NuGet is a Visual Studio 2010 extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects that use the .NET Framework....
View ArticleUpdated Wiki: Nuget
Nuget Package Installation NuGet is a Visual Studio 2010 extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects that use the .NET Framework....
View ArticleUpdated Wiki: Nuget
Nuget Package Installation NuGet is a Visual Studio 2010 extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects that use the .NET Framework....
View ArticleUpdated Wiki: Obtain and Build the Code
Obtain the Code There are two ways to get the code:Git Caliburn.Micro uses Git for source control. I highly recommend that you use the GitHub for Windows client which you can get here...
View ArticleNew Post: Source Code Now Using Git
Caliburn.Micro's source code is not using Git for for version control. I highly recommend that you use the GitHub for Windows client which you can get here http://windows.github.com/ You can read...
View ArticleNew Post: Source Code Now Using Git
EisenbergEffect wrote:Caliburn.Micro's source code is not using Git for for version control. Typo :) Title is fine, just not quite the first line.
View ArticleNew Post: Dynamically add button when loading viewmodel
So I discovered that there is a much simpler way of doing this:<StackPanel><ItemsControlx:Name="Items"><ItemsControl.ItemTemplate><DataTemplate><ButtonContent="{Binding...
View ArticleCreated Issue: winrt: DisplayRootViewFor works, DisplayRootView does not [262]
DisplayRootView<MenuView>() does not find the matching view model MenuViewModel.Using DisplayRootViewFor<MenuViewModel> does find the appopreate view.. can't figure out what i'm missing.I'm...
View ArticleNew Post: Dynamically add button when loading viewmodel
The execute and canexecute model (builtin CM) allows for this so all you need to do is create a property called CanActivateItem of type bool and do some logic in the getter to cause the button to...
View ArticleNew Post: Dynamically add button when loading viewmodel
That's it exactly. I didn't realise I could use the canexecute model with ActivateItem. Thanks.
View Article