New Post: Caliburn Obfuscation
I do it in SmartAssembly itself, under the Obfuscation section. Click on the Exclusions option next to the assembly that contains the View and ViewModel namespaces. You want to exclude all of the...
View ArticleNew Post: RadContextMenu with caliburn.micro
name the longlistselector and use that as the ElementName for the menu. Don't name it "Collections" though. it has to do with the visual tree and being seen
View ArticleCommented Issue: WinRT: Specifying RequestedTheme in XAML crashes unit test...
If the RequestedTheme is specified inside markup of App.xaml, then MSTest test projects fail to run with the following errors:Unhandled exception at 0x0FF66C57 (Windows.UI.Xaml.dll) in...
View ArticleNew Post: Caliburn Obfuscation
SmartAssembly doesn't try to include reference starting with System. If you turn on self-diagnostic mode (remember to turn it off later), you will most likely find out that you need to copy...
View ArticleNew Post: PhoneBaseBootstrapper Start missing
Hello! I installed Caliburn.Micro.Start via nuget for WP8. But when I want run the project I have next error: The name 'Start' does not exist in the current context. Any ideas? Thank you
View ArticleNew Post: CaliburnBindableAppBar WP8
I installed CM 2.0.0.0 and BindableAppBar 1.0.5.0, but I can't add BindableAppBarButton to my page, I have next error: Could not load file or assembly 'Caliburn.Micro, Version=1.5.2.0, Culture=neutral,...
View ArticleNew Post: PhoneBaseBootstrapper Start missing
SOLVED: You should use Initialize method. Please correct the documentation.
View ArticleCreated Unassigned: Caliburn.Micro.Start Bootstrapper has call to nonexistant...
In the startup code generated by installing the Caliburn.Micro.Start package, the constructor in AppBootsrtapper.cs contains a call to a Start() method, which is not defined. As a result, the project...
View ArticleNew Post: Handling Focus?
hi Sorry to bump this old post, but I found this answer which solved my problem... but I don't understand one thing :<TextBox x:Name="UserName" Style="{StaticResource LoginTextBox}">...
View ArticleNew Post: Login view - Login button is not disabled initially based on...
Hi people, I just started looking into Caliburn Micro and I started up with a simple login page implementation. My page xaml looks like this<StackPanel Grid.Column="1" Grid.Row="1">...
View ArticleCommented Issue: Problem with convention binding to decimal property [90]
When a Silverlight textbox is bound to a decimal property using conventions, it is not possible to type a number followed by a decimal point. As soon as the decimal point is entered it disappears and...
View ArticleNew Post: Screen View Caching Bug?
Hi There, I am new to Caliburn.Micro, so I may just be missing something obvous... I have a ShellView that has a ListBox bound to a list of 3 ViewModels (@ : Screen), and it's SelectedItem bound to the...
View ArticleNew Post: Handling Focus with Caliburn.Micro
Thanks @kishorejangid, it works !!! you save my time ... :) I add few lines to enable/disable a control public static void Enable(this IViewAware screen, Expression<Func<object>>...
View ArticleNew Post: Screen View Caching Bug?
I see the same thing. I use caliburn 1.5 and 2.0. Please check it.
View ArticleNew Post: CaliburnBindableAppBar WP8
because the BindableAppBar used cm version 1.5, you can get source code of bindableAppBar from GitHub, then rebuild it, for instance, i upload that code here:...
View ArticleNew Post: Detect dormant or Tombstone navigate to view
hello, i use a caliburn micro. In my app i detect a dormant or Tombstone state in AppBootStrapper.cs protected override void OnActivate(object sender, ActivatedEventArgs e) { } i would "REDIRECT" app...
View ArticleNew Post: Changing DataContext, does not change target
Having a view which uses Action.Target and I change the view's DataContext, then the actions target doesn't always change. Simple Test-Program:<Window x:Class="CaliburnMicroTest.MainWindow"...
View ArticleNew Post: Changing DataContext, does not change target
This is really driving me nuts. I ran into the same issue now with a menu item.<MenuItem Header="{Binding Id}" ca:Action.Target="{Binding RelativeSource={RelativeSource AncestorType=ContextMenu},...
View ArticleNew Post: Changing DataContext, does not change target
Here's another example: Caliburn does not care for the changed target (DataContext.Something). ActionMessage.UpdateContext() does not get called when DataContext.Something changes, so it will always...
View Article