MvvmBlazor 1.1.0
See the version list below for details.
dotnet add package MvvmBlazor --version 1.1.0
NuGet\Install-Package MvvmBlazor -Version 1.1.0
<PackageReference Include="MvvmBlazor" Version="1.1.0" />
paket add MvvmBlazor --version 1.1.0
#r "nuget: MvvmBlazor, 1.1.0"
// Install MvvmBlazor as a Cake Addin #addin nuget:?package=MvvmBlazor&version=1.1.0 // Install MvvmBlazor as a Cake Tool #tool nuget:?package=MvvmBlazor&version=1.1.0
MvvmBlazor
BlazorMVVM is a small framework for building Blazor and BlazorServerside apps. With it's simple to use MVVM pattern you can boost up your development speed while minimizing the hazzle to just make it work.
Get started
MvvmBlazor is available on NuGet. You will need .NET Core 3.0 or later to use this library.
Usage
Startup
The library needs to be initialized in order to use it. This is done in your Startup
class.
BlazorServerside:
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddMvvm();
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.UseMvvm();
}
}
Blazor:
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddMvvm();
}
public void Configure(IComponentsApplicationBuilder app)
{
app.UseMvvm();
}
}
Components
Components need to inherit the base class MvvmBlazor.Components.MvvmComponentBase
if you want to inject your view model manually. You can set a binding on any view model you like to.
If you want full support use MvvmBlazor.Components.MvvmComponentBase<T>
and specify your view model type as a generic argument.
Your view model will get auto injected into the component and set as a binding context.
BindingSource
The binding source is the default source object a binding will be made to. It is set automatically when using the base class MvvmBlazor.Components.MvvmComponentBase<T>
where T
is your view model type. You can access it via the BindingContext
property in your component.
Bindings
Bindings are achieved via the Bind
method in the component. If the value of the bound property has changed the component will be told to rerender automatically. In this example we assume that the class ClockViewModel
has a property called DateTime
.
@inherits MvvmComponentBase<ClockViewModel>
Current time: @Bind(x => x.DateTime)
Bindings can also be done by specifying the binding source explicitly:
@inherits MvvmComponentBase
@inject ClockViewModel ClockViewModel
Current time: @Bind(ClockViewModel, x => x.DateTime)
Bindings also handle background updating automatically. No need to invoke the main thread.
EventHandlers
Event handles work just the way they work in blazor. When you use the non generic base class you can bind any injected object on them.
@inherits MvvmComponentBase
@inject CounterViewModel CounterViewModel
<button @onclick="@CounterViewModel.IncrementCount">Click me</button>
When using the generic base class you can directly bind them to your binding context.
@inherits MvvmComponentBase<CounterViewModel>
<button @onclick="@BindingContext.IncrementCount">Click me</button>
ViewModel
View models need to inherit the base class MvvmBlazor.ViewModel.ViewModelBase
.
Property implementation
Bindable properties need to raise the PropertyChanged
event on the ViewModel.
The Set
-Method is performing an equality check and is raising this event if needed.
An example implementation could look like this:
private int _currentCount;
public int CurrentCount
{
get => _currentCount;
set => Set(ref _currentCount, value);
}
Lifecycle methods
View models have access to the same lifecycle methods as a component when they are set as a binding context. They are documented here.
Dispose
View models are implementing the IDisposable
pattern of Blazor. Inside ViewModels, Disposing is achieved by overriding the Dispose(bool disposing)
method.
Examples
Examples for Blazor and Serverside Blazor can be found here.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.AspNetCore.Blazor (>= 3.0.0-preview9.19465.2)
- Microsoft.AspNetCore.Components (>= 3.0.0)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on MvvmBlazor:
Package | Downloads |
---|---|
Yamf.Core.Themed.Blazor
Package Description |
|
Yamf.Authentication.Themed.Blazor
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
6.0.6 | 34,227 | 6/11/2022 | |
6.0.5 | 511 | 6/4/2022 | |
6.0.4 | 2,477 | 5/1/2022 | |
6.0.3 | 2,586 | 3/5/2022 | |
6.0.2 | 457 | 3/4/2022 | |
6.0.1 | 447 | 3/3/2022 | |
6.0.0 | 473 | 3/1/2022 | |
2.0.0 | 16,339 | 2/22/2021 | |
1.1.7 | 1,130 | 12/5/2020 | |
1.1.6 | 907 | 9/20/2020 | |
1.1.5 | 2,312 | 5/20/2020 | |
1.1.4 | 694 | 10/12/2019 | |
1.1.3 | 564 | 9/27/2019 | |
1.1.2 | 433 | 9/25/2019 | |
1.1.1 | 440 | 9/25/2019 | |
1.1.0 | 439 | 9/23/2019 | |
1.0.5 | 732 | 5/10/2019 |