New Post: Caliburn.Micro HelloScreens sample build error
Thanks for the quick fix. Can you explain the reson for the error? Jut curious
View ArticleNew Post: Just a small suggestion from a newbie
Why don't you guys consider taking this whole convention stuff and push it a step further. and what i mean by that is: if for example a textbox is bound to an int variable, or double, that textbox...
View ArticleNew Post: Caliburn.Micro HelloScreens sample build error
the class keyword was missing from the abstraction to tell the DocumentWorkspace that the TDocument was a derived object class. public abstract class DocumentWorkspace<TDocument> :...
View ArticleNew Post: Just a small suggestion from a newbie
mvermef wrote: Isn't that what validation is for? No. I am not talking about validation. it's a convenience feature. i am not asking for textbox that validates e-mails for example. i just want to...
View ArticleNew Post: Hardest problem i ever had with CM.
Here is a conductor i made. Everything works fine except that when i have two dialogs ,when one closes with TryClose the other one cant be closed . I do everything but it gets added to Items list...
View ArticleNew Comment on "Customizing The Bootstrapper"
The type initializer for 'Caliburn.Micro.ConventionManager' threw an exception I am new in Caliburn.Micro,When i give name of textblock control then its give error The type initializer for...
View ArticleCommented Issue: Make Portable Libraries [259]
For v2 we need to refactor to portable libraries.Comments: There is a C# compiler bug with referencing PCL assemblies that might also harm us here: [VS2012 incorrectly resolves mscorlib version when...
View ArticleNew Comment on "Customizing The Bootstrapper"
I am getting exception in below method of Bootstrapper.cs ViewModelBinder.Bind(viewModel, view, null); i chk the viewModel has ShellViewModel instant and view has ShellView instance..then why this code...
View ArticleNew Comment on "Customizing The Bootstrapper"
I am getting exception in below method of Bootstrapper.cs ViewModelBinder.Bind(viewModel, view, null); i chk the viewModel has ShellViewModel instance and view has ShellView instance..then why this...
View ArticleNew Comment on "Customizing The Bootstrapper"
I got resolved problem...in the source code of Cliburn.micro.dll there is a missing "IncludeStaticProperties" Boolean property of ViewModelBinder.cs class..i added this property explicitly and rebuild...
View ArticleNew Post: WP7: Navigation Frame Adapter never closes screens?
I am not sure if I am understanding the code correctly, or if it gets overridden somewhere, but in the INavigationService.cs frame adapter for WP71, you're calling CanCloseOnNavigating which always...
View ArticleNew Post: Handling Suspend/Resume in WinRT pages
Is there any support for Suspend and resume available in WinRT version of Caiburn Micro? If yes is the answer, how i can implement Suspend/Resume functionality with this architecture. I don't believe a...
View ArticleNew Post: WP8 - views in subfolders
I’m starting playing with Caliburn.Micro on WP8. I have recompiled sample from WP 7.1 and it works fine but next step was organizing directory tree (Views goes to Views sub dictionary and ViewModels to...
View ArticleCreated Issue: Unable to install Caliburn with nuget (WP 7.1) [289]
Hello,When I try to use nuget for Windows Phone 7.1 application I get following error message:```Successfully installed 'Caliburn.Micro 1.4.1'.Successfully uninstalled 'Caliburn.Micro 1.4.1'.Install...
View ArticleCommented Issue: Unable to install Caliburn with nuget (WP 7.1) [289]
Hello,When I try to use nuget for Windows Phone 7.1 application I get following error message:```Successfully installed 'Caliburn.Micro 1.4.1'.Successfully uninstalled 'Caliburn.Micro 1.4.1'.Install...
View ArticleNew Post: [WinRT] Are code behind files required for views?
If I don't have a code behind, the view cannot be found. Are they required?
View ArticleNew Post: [WinRT] Are code behind files required for views?
Which version of CM are you using? I experienced the same problem as you a while ago and wrote a short item about it, see here. Today, I tested a new project using the latest CM source code, and it...
View ArticleNew Post: Use IResults from CanClose
I solved it like (maybe there is a better soluton?) public abstract class ShellViewModel : Screen { public ShellViewModel(IResultFactory resultFactory) { Result = resultFactory; } public IResultFactory...
View ArticleNew Post: [WinRT] Are code behind files required for views?
I think this is compiler related. Easiest is NOT to delete the code-behind files, they will not hurt.
View Article