RxBlazorV2.MudBlazor
1.2.1
See the version list below for details.
dotnet add package RxBlazorV2.MudBlazor --version 1.2.1
NuGet\Install-Package RxBlazorV2.MudBlazor -Version 1.2.1
<PackageReference Include="RxBlazorV2.MudBlazor" Version="1.2.1" />
<PackageVersion Include="RxBlazorV2.MudBlazor" Version="1.2.1" />
<PackageReference Include="RxBlazorV2.MudBlazor" />
paket add RxBlazorV2.MudBlazor --version 1.2.1
#r "nuget: RxBlazorV2.MudBlazor, 1.2.1"
#:package RxBlazorV2.MudBlazor@1.2.1
#addin nuget:?package=RxBlazorV2.MudBlazor&version=1.2.1
#tool nuget:?package=RxBlazorV2.MudBlazor&version=1.2.1
RxBlazorV2.MudBlazor
Reactive MudBlazor button components for RxBlazorV2. Provides automatic progress indicators, cancellation support, and confirmation dialogs for command bindings.
Installation
dotnet add package RxBlazorV2.MudBlazor
Components
| Component | Description |
|---|---|
MudButtonRx |
Sync command button |
MudButtonAsyncRx |
Async command button with progress/cancel |
MudButtonRxOf<T> |
Parameterized sync command button |
MudButtonAsyncRxOf<T> |
Parameterized async command button |
MudIconButtonRx |
Sync icon button |
MudIconButtonAsyncRx |
Async icon button with badge progress |
MudIconButtonRxOf<T> |
Parameterized sync icon button |
MudIconButtonAsyncRxOf<T> |
Parameterized async icon button |
MudFabRx |
Sync floating action button |
MudFabAsyncRx |
Async FAB with progress |
MudFabRxOf<T> |
Parameterized sync FAB |
MudFabAsyncRxOf<T> |
Parameterized async FAB |
StatusDisplay |
Error and message display with snackbar/icon |
StatusDisplay Component
The StatusDisplay component provides reactive error and status message handling with configurable display modes.
Setup
Add the StatusDisplay component to your layout (e.g., in the AppBar):
@using RxBlazorV2.MudBlazor.Components
<MudAppBar>
<MudSpacer />
<StatusDisplay />
</MudAppBar>
StatusModel
Inject StatusModel into your models to report errors and messages:
public partial class MyModel : ObservableModel
{
public partial MyModel(StatusModel statusModel);
private void DoSomething()
{
StatusModel.AddMessage("Operation completed");
}
private void HandleError()
{
// Errors are automatically captured from commands via IErrorModel
// Or add manually:
StatusModel.HandleError(new Exception("Something went wrong"));
}
}
Display Modes
| Mode | Description |
|---|---|
SNACKBAR |
Show only snackbar notification |
ICON |
Show only icon with badge and tooltip |
SNACKBAR_AND_ICON |
Show both snackbar and icon |
Message Modes
| Mode | Description |
|---|---|
AGGREGATE |
Collect all messages (default for errors) |
SINGLE |
Clear previous before adding new (default for messages) |
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
ErrorDisplayMode |
StatusDisplayMode |
SNACKBAR_AND_ICON |
How errors are displayed |
ErrorMode |
StatusMessageMode |
AGGREGATE |
Error accumulation mode |
ErrorSnackbarOptions |
Action<SnackbarOptions>? |
Hide close icon | Snackbar configuration |
MessageDisplayMode |
StatusDisplayMode |
SNACKBAR |
How messages are displayed |
MessageMode |
StatusMessageMode |
SINGLE |
Message accumulation mode |
MessageSnackbarOptions |
Action<SnackbarOptions>? |
Hide close icon | Snackbar configuration |
SnackbarPositionClass |
string |
TopEnd |
Snackbar position |
Customization Example
<StatusDisplay ErrorDisplayMode="StatusDisplayMode.ICON"
MessageDisplayMode="StatusDisplayMode.SNACKBAR_AND_ICON"
ErrorMode="StatusMessageMode.AGGREGATE"
MessageMode="StatusMessageMode.SINGLE"
SnackbarPositionClass="@Defaults.Classes.Position.BottomCenter" />
Usage
Basic Async Button with Progress
<MudButtonAsyncRx Command="@Model.SaveCommand"
Variant="Variant.Filled"
Color="Color.Primary">
Save
</MudButtonAsyncRx>
With Cancellation Support
<MudButtonAsyncRx Command="@Model.LongRunningCommand"
CancelText="Cancel"
CancelColor="Color.Warning">
Start Process
</MudButtonAsyncRx>
With Confirmation Dialog
<MudButtonAsyncRx Command="@Model.DeleteCommand"
ConfirmExecutionAsync="@ConfirmDeleteAsync"
Color="Color.Error">
Delete
</MudButtonAsyncRx>
@code {
private async Task<bool> ConfirmDeleteAsync()
{
return await DialogService.ShowMessageBox(
"Confirm Delete",
"Are you sure you want to delete this item?",
yesText: "Delete", cancelText: "Cancel") == true;
}
}
Parameterized Command
@foreach (var item in Items)
{
<MudButtonAsyncRxOf T="ItemModel"
Command="@Model.ProcessItemCommand"
Parameter="@item">
Process @item.Name
</MudButtonAsyncRxOf>
}
Icon Button with Progress Badge
<MudIconButtonAsyncRx Command="@Model.RefreshCommand"
Icon="@Icons.Material.Filled.Refresh"
HasProgress="true" />
Parameters
All async button components support:
| Parameter | Type | Description |
|---|---|---|
Command |
IObservableCommandAsync |
Required. The command to execute |
CanExecute |
Func<bool> |
Additional execution guard |
ConfirmExecutionAsync |
Func<Task<bool>> |
Confirmation before execution |
CancelText |
string |
Text for cancel mode (enables cancellation) |
CancelColor |
Color |
Button color during cancel mode |
HasProgress |
bool |
Show progress spinner (default: true) |
Parameterized versions (*RxOf<T>) also require:
| Parameter | Type | Description |
|---|---|---|
Parameter |
T |
The value to pass to the command |
Requirements
- .NET 10.0+
- RxBlazorV2 1.0.0+
- MudBlazor 8.0.0+
License
MIT License - see LICENSE for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Microsoft.AspNetCore.Components.Web (>= 10.0.6)
- MudBlazor (>= 9.3.0)
- RxBlazorV2 (>= 1.2.1)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on RxBlazorV2.MudBlazor:
| Package | Downloads |
|---|---|
|
BlazorPRF.Noble.UI
MudBlazor UI components for PRF-based deterministic encryption |
|
|
BlazorPRF.BC.UI
MudBlazor UI components for PRF-based deterministic encryption |
|
|
BlazorPRF.UI
MudBlazor UI components for PRF-based deterministic encryption |
|
|
SqliteWasmBlazor.Crypto.UI
Base-plane RxBlazorV2 + MudBlazor panels for SqliteWasmBlazor: WebAuthn-PRF authentication / registration, database boot-error alert, session-expired popover. Hosts wire IPrfAuthenticator / ISessionAuthenticator / IDatabaseResetService seams. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 1.2.5 | 136 | 5/7/2026 | |
| 1.2.4 | 99 | 5/2/2026 | |
| 1.2.3 | 96 | 4/30/2026 | |
| 1.2.2 | 103 | 4/27/2026 | |
| 1.2.1 | 104 | 4/16/2026 | |
| 1.2.0 | 121 | 4/15/2026 | |
| 1.1.5 | 140 | 4/3/2026 | |
| 1.1.4 | 105 | 4/2/2026 | |
| 1.1.3 | 117 | 4/1/2026 | |
| 1.1.2 | 174 | 12/20/2025 | |
| 1.1.1 | 206 | 12/20/2025 | |
| 1.1.0 | 208 | 12/20/2025 | |
| 1.0.9 | 210 | 12/20/2025 | |
| 1.0.8 | 295 | 12/18/2025 | |
| 1.0.7 | 300 | 12/18/2025 | |
| 1.0.6 | 349 | 12/17/2025 | |
| 1.0.5 | 315 | 12/15/2025 | |
| 1.0.4 | 169 | 12/11/2025 | |
| 1.0.3 | 256 | 12/4/2025 | |
| 1.0.1 | 236 | 12/3/2025 |
v1.0.0 - Initial Release
- MudButtonRx and MudButtonAsyncRx for command binding
- MudIconButtonRx and MudIconButtonAsyncRx with badge-based progress
- MudFabRx and MudFabAsyncRx floating action buttons
- Automatic progress spinner during async execution
- Cancel badge/button when operation supports cancellation
- Optional confirmation dialog before execution