Radzen Blazor Components

Get started

info
All interactive features of the Radzen Blazor components require interactivity of the container .razor file to be enabled or the @rendermode attribute of the component to be set to one of the following values: InteractiveServer, InteractiveAuto or InteractiveWebAssembly. More info is available in the rendering mode article from the official Blazor documentation.
info
If you have upgraded your application to .NET 8 or .NET 9 follow the getting started instructions for the version you initially used - e.g. .NET 7 or .NET 6. These instructions assume the new application layout which uses rendering modes and was introduced with .NET 8.

1. Installlink

The Radzen Blazor components are distributed via the Radzen.Blazor nuget package.

You can add the Radzen.Blazor nuget package to your Blazor application in one of the following ways:

  • Via Visual Studio's Nuget Package Manager.
  • Via command line dotnet add package Radzen.Blazor
  • By editing your application's .csproj file and adding a package reference <PackageReference Include="Radzen.Blazor" Version="*" />

2. Import the namespacelink

Open the _Imports.razor file of your Blazor application and append the following:

@using Radzen
@using Radzen.Blazor

3. Set the themelink

Open the App.razor file of your application. Add this code within the <head> element:

<RadzenTheme Theme="material" />

4. Include Radzen.Blazor.jslink

Open the App.razor file of your application. Add this code after the last <script>:

<script src="_content/Radzen.Blazor/Radzen.Blazor.js?v=@(typeof(Radzen.Colors).Assembly.GetName().Version)"></script>

5. Use a componentlink

Use any Radzen Blazor component by typing its tag name in a Blazor page:

<RadzenButton Click="@ButtonClicked" Text="Hi"></RadzenButton>
@code {
  void ButtonClicked()
  {
    // Handle the Click event of RadzenButton
  }
}

6. Use Dialog, Notification, ContextMenu and Tooltip componentslink

Open the MainLayout.razor file and include:

<RadzenComponents @rendermode="InteractiveAuto" />
info
Set the @rendermode attribute to the render mode of your application e.g. InteractiveServer, InteractiveWebAssembly or InteractiveAuto.

Open the Program.cs file and include:

builder.Services.AddRadzenComponents();

Next: Explore Demos

Hooray! You have successfuly added Radzen Blazor Components to your Blazor app. Now let's take a deeper look and explore more components and demos.

Explore Demos

All the tools in one place

Code Less. Deliver More.

With Radzen Subscription you get the full toolkit. Get started now and save hours on every project.

task_alt

Complete Blazor development environment.

task_alt

Open technology stack. No vendor lock-in.

task_alt

Ready-to-use UI blocks and app templates.

task_alt

Advanced theming.

task_alt

Dedicated support backed by proven expertise.

task_alt

No hidden runtime costs.

Radzen Blazor Studio

Radzen Blazor Components, © 2018-2025 Radzen.
Source Code licensed under MIT

Demos Configuration

Premium Themes

  • Material 3
  • Material 3 Dark
  • Fluent
  • Fluent Dark

Free Themes

  • Material
  • Material Dark
  • Standard
  • Standard Dark
  • Default
  • Dark
  • Humanistic
  • Humanistic Dark
  • Software
  • Software Dark
An error has occurred. This app may no longer respond until reloaded. Reload 🗙