Caliburn.Micro
Caliburn.Micro copied to clipboard
A small, yet powerful framework, designed for building applications across all XAML platforms. Its strong support for MV* patterns will enable you to build your solution quickly, without the need to s...
Initial support for NET MAUI with platforms Android and Windows working and tested. Also had a chance to test on MacOS and it looks like that is working as well....
I am following the instructions here using WPF dotnet 6.0 project. https://caliburnmicro.com/documentation/configuration Everything works but setting the CanSayHello bool for the SayHello Command. The issue is the CanSayHello is not...
 I am a newer to Caliburn.micro.When I use "navigationService.NavigateToViewModel(typeof(MenuViewModel))" ,I find that the MenuVIew will show in the frame, but the MenuViewModel does not work,does anybody can explain the...
I am working on a WPF app and I have a view model which inherits from Conductor.Collection.AllActive. I add child views to the Items collection like so: ``` await ActivateItemAsync(IoC.Get());...
There is at least one breaking change in this patch(!) release, where the "BootstrapperBase.DisplayRootViewFor" method has been (correctly) renamed to "DisplayRootViewFor**Async**". Such a change belongs in a major version update,...
I'm upgrading an application from v2 to v4 **Caliburn.Micro**. The Bootstrapper was registering view assemblies like this: ``` AssemblySourceCache.Install(); var viewAssemblies = GetViewAssemblies(); AssemblySource.Instance.AddRange(viewAssemblies); ``` Having upgraded to v4, the...
This makes Caliburn.Micro work with [AvaloniaUI](https://avaloniaui.net/). Related to #556. Needs review and testing.
We need to implement the following functions: - active a screen. - open/switch a new view. - reload some datas by active/init. We can't use OnActiveAsync to load data. This...