Formaze.Blazor.MudBlazor
1.1.0
See the version list below for details.
dotnet add package Formaze.Blazor.MudBlazor --version 1.1.0
NuGet\Install-Package Formaze.Blazor.MudBlazor -Version 1.1.0
<PackageReference Include="Formaze.Blazor.MudBlazor" Version="1.1.0" />
<PackageVersion Include="Formaze.Blazor.MudBlazor" Version="1.1.0" />
<PackageReference Include="Formaze.Blazor.MudBlazor" />
paket add Formaze.Blazor.MudBlazor --version 1.1.0
#r "nuget: Formaze.Blazor.MudBlazor, 1.1.0"
#:package Formaze.Blazor.MudBlazor@1.1.0
#addin nuget:?package=Formaze.Blazor.MudBlazor&version=1.1.0
#tool nuget:?package=Formaze.Blazor.MudBlazor&version=1.1.0
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.
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.1.0
- EF Core store — new companion package
Formaze.Blazor.MudBlazor.EFCorepersists 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
CustomFieldRendererparameter, 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
How it works
- Developer installs the package and drops
<FormazeComponent>on a page - Admin configures the form layout in the live UI — no redeploy needed
- 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€ | 3 forms, Formaze watermark |
| Pro | 490€ / app / year | Unlimited forms, no watermark, 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
Links
| Product | Versions 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. |
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.
v1.1.0 — EF Core store (companion package), conditional fields, custom field renderers, JSON export/import in the editor, full WCAG 2.2 AA pass, and a 370-test suite. Full changelog: https://formaze.dev/docs