Formaze.Blazor.MudBlazor 1.2.3

dotnet add package Formaze.Blazor.MudBlazor --version 1.2.3
                    
NuGet\Install-Package Formaze.Blazor.MudBlazor -Version 1.2.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Formaze.Blazor.MudBlazor" Version="1.2.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Formaze.Blazor.MudBlazor" Version="1.2.3" />
                    
Directory.Packages.props
<PackageReference Include="Formaze.Blazor.MudBlazor" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Formaze.Blazor.MudBlazor --version 1.2.3
                    
#r "nuget: Formaze.Blazor.MudBlazor, 1.2.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Formaze.Blazor.MudBlazor@1.2.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Formaze.Blazor.MudBlazor&version=1.2.3
                    
Install as a Cake Addin
#tool nuget:?package=Formaze.Blazor.MudBlazor&version=1.2.3
                    
Install as a Cake Tool

Formaze.Blazor.MudBlazor

Zero form markup. Developers install, admins design.

Formaze is an embedded no-code form builder for Blazor apps. Add one component — your team configures the form live, without code changes or redeployments.

NuGet Downloads License

Define a C# model, drop one component, and let your admins design the form live — drag & drop fields, group them, set labels, all without a redeploy. Try the live demo →


What's new in v1.2.0

  • Free tier is now unlimited on forms — the previous 3-form cap is gone; the "Powered by Formaze" watermark stays as the Free-tier marker
  • JSON config import/export is now Pro — the editor's import/export buttons are reserved for Pro and Enterprise licenses

Full changelog


What's new in v1.1.0

  • EF Core store — new companion package Formaze.Blazor.MudBlazor.EFCore persists form configs in any EF Core database (SQL Server, PostgreSQL, SQLite…)
  • Conditional fields — show a field only when another equals a given value, configured live in the editor
  • Custom field renderers — override rendering for any field via the CustomFieldRenderer parameter, with automatic fallback
  • JSON export / import in the editor toolbar
  • WCAG 2.2 AA pass — keyboard reordering, screen-reader field groups, AA contrast and visible focus
  • 370 tests — components, stores, sync, licensing and accessibility regressions

Full changelog


How it works

  1. Developer installs the package and drops <FormazeComponent> on a page
  2. Admin configures the form layout in the live UI — no redeploy needed
  3. Users fill in and submit the form

Installation

dotnet add package Formaze.Blazor.MudBlazor

Requires MudBlazor already set up in your project. Targets .NET 8, 9, and 10.


Quick start

1. Register services in Program.cs (MudBlazor must already be registered):

builder.Services.AddMudServices();
builder.Services.AddFormazeJson(options =>
{
    options.LicenseKey = "YOUR_LICENSE_KEY"; // omit for the Free tier
});

2. Add the component to any Blazor page. Key and Model are required; set EditMode to true for admins to configure the form live:

<FormazeComponent T="ContactForm"
                  Key="contact"
                  Model="_model"
                  EditMode="_isAdmin"
                  OnValidSubmit="HandleSubmit" />

@code {
    private ContactForm _model = new();
    private bool _isAdmin = true;

    private void HandleSubmit()
    {
        // _model now holds the validated values
        Console.WriteLine($"{_model.Name} <{_model.Email}>");
    }
}

3. Define your model:

public class ContactForm
{
    [Display(Name = "Full name")]
    [Required]
    public string Name { get; set; } = "";

    [Display(Name = "Email")]
    [Required, EmailAddress]
    public string Email { get; set; } = "";

    [Display(Name = "Message")]
    [DataType(DataType.MultilineText)]
    public string Message { get; set; } = "";
}

Formaze reads the model and generates the form automatically. No Razor, no HTML, no boilerplate.


Supported field types

C# type Rendered as
string Text input
string + [EmailAddress] Email input
string + [DataType(MultilineText)] Textarea
int, decimal, double Numeric input
bool Checkbox
DateTime, DateOnly Date picker
enum Dropdown
Nullable variants Same, nullable

Admin features

When EditMode is enabled, admins can configure the form live:

  • Add / remove fields from the model
  • Reorder fields via drag & drop
  • Group fields into labeled sections
  • Configure each field — label, placeholder, required, min/max, format…
  • Changes are saved automatically on exit from edit mode

Store options

Choose where form configurations are persisted:

// JSON files on disk (default)
builder.Services.AddFormazeJson();

// In-memory (prototyping / tests only — lost on restart)
builder.Services.AddFormazeInMemory();

// Custom store (Redis, Azure Blob, your own IFormazeStore)
builder.Services.AddFormaze<MyCustomStore>();

// EF Core — any database (SQL Server, PostgreSQL, SQLite…)
// requires the companion package: Formaze.Blazor.MudBlazor.EFCore
builder.Services.AddFormazeEfCore<MyDbContext>();

Licensing

Tier Price Limits
Free 0€ Unlimited forms, Formaze watermark
Pro 490€ / app / year No watermark, JSON config import/export, email support
Enterprise Custom Multiple apps, dedicated support

Get a license → formaze.dev/checkout


Requirements

  • .NET 8, 9, or 10
  • Blazor Server or WebAssembly (interactive render mode)
  • MudBlazor 9.x

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Formaze.Blazor.MudBlazor:

Package Downloads
Formaze.Blazor.MudBlazor.EFCore

Entity Framework Core store adapter for Formaze. Persists form configurations in any EF Core-compatible database (SQL Server, PostgreSQL, SQLite, etc.).

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.3 41 5/31/2026
1.2.2 43 5/29/2026
1.2.1 42 5/29/2026
1.2.0 50 5/29/2026
1.1.0 47 5/29/2026
1.0.0 95 5/4/2026

v1.2.3: the editor's tooltips now spell out what each action does, and the conditional-field marker shows the actual rule (which field and value reveal it) instead of a generic message.