Kamishibai.Hosting
2.1.0
See the version list below for details.
dotnet add package Kamishibai.Hosting --version 2.1.0
NuGet\Install-Package Kamishibai.Hosting -Version 2.1.0
<PackageReference Include="Kamishibai.Hosting" Version="2.1.0" />
paket add Kamishibai.Hosting --version 2.1.0
#r "nuget: Kamishibai.Hosting, 2.1.0"
// Install Kamishibai.Hosting as a Cake Addin #addin nuget:?package=Kamishibai.Hosting&version=2.1.0 // Install Kamishibai.Hosting as a Cake Tool #tool nuget:?package=Kamishibai.Hosting&version=2.1.0
KAMISHIBAI
KAMISHIBAI is a navigation library for WPF that supports MVVM pattern on Generic Host.
By declaring arguments in the ViewModel constructor, a dedicated navigation method is automatically generated.
To pass a string during a navigation, define a ViewModel as follows
[Navigate]
public class FirstViewModel
{
public FirstViewModel(string message)
{
Message = message;
}
public string Message { get; }
}
A dedicated navigation method is then automatically generated and can be called as follows
await _presentationService.NavigateToFirstAsync("Hello, KAMISHIBAI!");
And you can use DI together.
public FirstViewModel(
string message,
[Inject] ILogger<FirstViewModel> logger)
Declare an InjectAttribute for the argument you wish to inject a dependency on.
The logger is injected from the DI container. Exactly the same as in the navigation example above, only the message can be passed to the navigation.
KAMISHIBAI guarantees type safety during navigation, allowing for safe implementations that take full advantage of nullable.
KAMISHIBAI does not restrict any of the WPF functions and provides the following
- Generic Host support
- ViewModel-driven navigation using the MVVM pattern
- Type-safe navigation parameters
- Consistent event notifications for navigation
- Support for maximizing the use of nullable
Generic Host support enables WPF to take advantage of most of the latest .NET technologies.
KAMISHIBAI provides the following features
- Navigation
- Display of new screens and user dialogs
- Display of message dialogs, file selection and save dialogs
With KAMISHIBAI, the MVVM pattern can be most easily realized in WPF.
And it can be used with any existing MVVM framework or library. There is one restriction, however.
Please use KAMISHIBAI for navigation.
Documents
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0-windows7.0 is compatible. net7.0-windows was computed. net8.0-windows was computed. |
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.6.2
- Kamishibai.View (>= 2.1.0)
- Microsoft.Extensions.Hosting (>= 6.0.1)
- Wpf.Extensions.Hosting (>= 1.1.2)
-
net6.0-windows7.0
- Kamishibai.View (>= 2.1.0)
- Microsoft.Extensions.Hosting (>= 6.0.1)
- Wpf.Extensions.Hosting (>= 1.1.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.0.1 | 215 | 9/20/2024 |
3.0.0 | 393 | 6/6/2024 |
2.6.0 | 296 | 2/23/2024 |
2.5.0 | 162 | 1/18/2024 |
2.4.0 | 269 | 11/18/2023 |
2.3.0 | 129 | 11/18/2023 |
2.2.0 | 138 | 11/18/2023 |
2.1.0 | 148 | 10/29/2023 |
2.0.1 | 168 | 9/21/2023 |
2.0.0 | 253 | 4/22/2023 |
1.1.1 | 564 | 10/14/2022 |
1.1.0 | 478 | 5/13/2022 |
1.0.0 | 493 | 5/5/2022 |
0.0.13-pre | 187 | 5/5/2022 |
0.0.12-pre | 164 | 5/5/2022 |
0.0.11-pre | 175 | 5/5/2022 |