VOOZH about

URL: https://www.nuget.org/packages/MudBlazor/8.15.0

⇱ NuGet Gallery | MudBlazor 8.15.0


ο»Ώ
There is a newer version of this package available.
See the version list below for details.
dotnet add package MudBlazor --version 8.15.0
 
 
NuGet\Install-Package MudBlazor -Version 8.15.0
 
 
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="MudBlazor" Version="8.15.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MudBlazor" Version="8.15.0" />
 
Directory.Packages.props
<PackageReference Include="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 MudBlazor --version 8.15.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MudBlazor, 8.15.0"
 
 
#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 MudBlazor@8.15.0
 
 
#: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=MudBlazor&version=8.15.0
 
Install as a Cake Addin
#tool nuget:?package=MudBlazor&version=8.15.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Material Design components for Blazor

πŸ‘ GitHub Workflow Status
πŸ‘ Quality Gate Status
πŸ‘ Codecov
πŸ‘ GitHub
πŸ‘ GitHub Repo stars
πŸ‘ Contributors
πŸ‘ Discussions
πŸ‘ Discord
πŸ‘ Twitter
πŸ‘ NuGet version
πŸ‘ NuGet downloads

Build stunning, interactive web applications with MudBlazor β€” the open-source Material Design library for Blazor.

🌐 Documentation ⚑ Interactive Playground

πŸ’Ž Why Choose MudBlazor?

πŸ“– Comprehensive documentation and examples
🎨 Beautiful Material Design components
πŸ’» Write in C# with minimal JavaScript
βœ… Extensive test coverage

πŸ“Š Repo Stats

πŸš€ Getting Started

Use one of our templates, or follow the quick install guide below:

Installation

Install Package:

dotnet add package MudBlazor

Add to _Imports.razor:

@using MudBlazor

Add to MainLayout.razor or App.razor:

<MudThemeProvider/>
<MudPopoverProvider/>
<MudDialogProvider/>
<MudSnackbarProvider/>

Add to HTML head section (index.html/_Layout.cshtml/_Host.cshtml/App.razor):

<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />

Add to the default Blazor script at the end of the HTML body section:

<script src="_content/MudBlazor/MudBlazor.min.js"></script>

Add to Program.cs:

using MudBlazor.Services;
builder.Services.AddMudServices();

Example Usage

<MudText Typo="Typo.h6">
 MudBlazor is @Text
</MudText>

<MudButton Variant="Variant.Filled" 
 Color="Color.Primary" 
 OnClick="ButtonOnClick">
 @ButtonText
</MudButton>

@code {
 string Text { get; set; } = "????";
 string ButtonText { get; set; } = "Click Me";
 int ClickCount { get; set; }

 void ButtonOnClick()
 {
 ClickCount += 1;
 Text = $"Awesome x {ClickCount}";
 ButtonText = "Click Me Again";
 }
}

For more details, see the full installation guide.

🀝 Contributing

Contributions from the community are what make MudBlazor successful.

πŸ’¬ Feel free to chat with us on Discord to get feedback before diving in.
πŸ“š Check out our to get started and learn more about how the project works.
πŸ§ͺ If a PR fixes something you reported, locally test it to ensure your app works as expected.

βš™οΈ Version Support

MudBlazor .NET Support
5.x.x .NET 5 Ended Jan 2022
6.x.x .NET 6, .NET 7, .NET 8 Ended Jan 2025
7.x.x .NET 7, .NET 8 Limited Support
8.x.x .NET 8, .NET 9 βœ… Full Support
  1. Upgrading? Check our Migration Guide for help with breaking changes.
  2. Static rendering is not supported. Learn more
  3. Use an up-to-date browser. Blazor supported platforms
Product Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows 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 (336)

Showing the top 5 NuGet packages that depend on MudBlazor:

Package Downloads
CodeBeam.MudBlazor.Extensions

MudBlazor extension components from contributors. Includes 30+ components and utilities.

MudBlazor.ThemeManager

ThemeManager component for MudBlazor to design, test or do live changes to Mudblazor themes.

MudBlazor.Markdown

Markdown component for MudBlazor (https://mudblazor.com/)

FenixAlliance.ACL.Dependencies

Application Component for the Alliance Business Suite.

MudBlazor.Extensions

MudBlazor.Extensions is a small extension library for MudBlazor from https://mudblazor.com/

GitHub repositories (77)

Showing the top 20 popular GitHub repositories that depend on MudBlazor:

Repository Stars
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
RayWangQvQ/BiliBiliToolPro
B η«™οΌˆbilibiliοΌ‰θ‡ͺ动任劑ε·₯ε…·οΌŒζ”―ζŒdocker、青龙、k8sη­‰ε€šη§ιƒ¨η½²ζ–ΉεΌγ€‚ε…¨ι’ζ‹₯抱AIγ€‚ζ•ζ„Ÿθ‚ŒδΉŸθƒ½η”¨γ€‚
kurrent-io/KurrentDB
KurrentDB is a database that's engineered for modern software applications and event-driven architectures. Its event-native design simplifies data modeling and preserves data integrity while the integrated streaming engine solves distributed messaging challenges and ensures data consistency.
mono/SkiaSharp
SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library. It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.
MattParkerDev/SharpIDE
A modern, cross platform IDE for .NET, built with .NET & Godot
dotnet/samples
Sample code referenced by the .NET documentation
fullstackhero/blazor-starter-kit
Clean Architecture Template for Blazor WebAssembly Built with MudBlazor Components.
ErsatzTV/legacy
Open-source platform that transforms your personal media library into live, custom TV channels.
Nethereum/Nethereum
Ethereum .Net cross platform integration library
enkodellc/blazorboilerplate
Blazor Boilerplate / Starter Template with MudBlazor
asynkron/protoactor-dotnet
Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin
Webreaper/Damselfly
Damselfly is a server-based Photograph Management app. The goal of Damselfly is to index an extremely large collection of images, and allow easy search and retrieval of those images, using metadata such as the IPTC keyword tags, as well as the folder and file names. Damselfly includes support for object/face detection.
abpframework/abp-samples
Sample solutions built with the ABP Framework
DragoQCC/CrucibleC2
A C# Command & Control framework
TheAxelander/OpenBudgeteer
OpenBudgeteer is a budgeting app based on the Bucket Budgeting Principle
Azure-Samples/azure-search-openai-demo-csharp
A sample app for the Retrieval-Augmented Generation pattern running in Azure, using Azure Cognitive Search for retrieval and Azure OpenAI large language models to power ChatGPT-style and Q&A experiences.
gustavnavar/Grid.Blazor
Grid component with CRUD for Blazor (client-side and server-side) and ASP.NET Core MVC
supabase-community/supabase-csharp
A C# Client library for Supabase
NikiforovAll/keycloak-authorization-services-dotnet
Authentication and Authorization with Keycloak and ASP.NET Core πŸ”
RatScanner/RatScanner
Rat Scanner a helpful tool for Escape from Tarkov.
Version Downloads Last Updated
9.6.0 2,121 6/27/2026
9.5.0 336,016 5/26/2026
9.4.0 566,094 4/22/2026
9.3.0 279,421 4/8/2026
9.2.0 327,542 3/18/2026
9.1.0 396,504 3/3/2026
9.0.0 448,373 2/19/2026
9.0.0-rc.1 27,895 2/11/2026
9.0.0-preview.2 16,068 1/14/2026
9.0.0-preview.1 11,253 12/20/2025
8.15.0 2,117,664 11/23/2025
8.14.0 415,241 11/5/2025
8.13.0 699,475 10/1/2025
8.12.0 803,509 9/2/2025
8.11.0 758,026 8/4/2025
8.10.0 293,066 7/19/2025
8.9.0 378,247 7/1/2025
8.8.0 280,830 6/17/2025
8.7.0 527,130 5/30/2025
8.6.0 749,434 4/29/2025
Loading failed