![]() |
VOOZH | about |
dotnet add package Custom.Radzen.Blazor --version 4.3.6
NuGet\Install-Package Custom.Radzen.Blazor -Version 4.3.6
<PackageReference Include="Custom.Radzen.Blazor" Version="4.3.6" />
<PackageVersion Include="Custom.Radzen.Blazor" Version="4.3.6" />Directory.Packages.props
<PackageReference Include="Custom.Radzen.Blazor" />Project file
paket add Custom.Radzen.Blazor --version 4.3.6
#r "nuget: Custom.Radzen.Blazor, 4.3.6"
#:package Custom.Radzen.Blazor@4.3.6
#addin nuget:?package=Custom.Radzen.Blazor&version=4.3.6Install as a Cake Addin
#tool nuget:?package=Custom.Radzen.Blazor&version=4.3.6Install as a Cake Tool
This is extended version of the Radzen.Blazor library with custom functions added and original functionality preserved
Currently following components have been extended(how to use - see RadzenBlazorDemos project):
Added static src/href links for js, css resources
Radzen Blazor Components are distributed as a Radzen.Blazor nuget package. You can add them to your project in one of the following ways
dotnet add package Custom.Radzen.BlazorOpen the _Imports.razor file of your Blazor application and add this line @using Radzen.Blazor.
Radzen Blazor components come with five free themes: Material, Standard, Default, Dark, Software and Humanistic.
To use a theme
Pages\_Layout.cshtml (Blazor Server .NET 6+), Pages\_Host.cshtml (Blazor Server before .NET 6) or wwwroot/index.html (Blazor WebAssembly) and include the CSS file of a theme CSS file by adding this snippet
<link rel="stylesheet" href="@RadzenResources.CssMaterialBase">
To include a different theme (i.e. Standard) just change the name of the CSS file:
<link rel="stylesheet" href="@RadzenResources.CssStandartBase">
Open Pages\_Layout.cshtml (Blazor Server .NET 6+), Pages\_Host.cshtml (Blazor Server before .NET 6) or wwwroot/index.html (Blazor WebAssembly) and include this snippet:
<script src="@RadzenResources.JsContent"></script>
Use any Radzen Blazor component by typing its tag name in a Blazor page e.g.
<RadzenButton Text="Hi"></RadzenButton>
<RadzenButton Text=@text />
<RadzenTextBox @bind-Value=@text />
@code {
string text = "Hi";
}
<RadzenButton Click="@ButtonClicked" Text="Hi"></RadzenButton>
@code {
void ButtonClicked()
{
}
}
<h1 align="center"> Radzen Blazor Components </h1>
<p align="center"> A set of <strong>70+ free and open source</strong> native Blazor UI controls. </p>
<div align="center">
See Online Demos or Read the Docs
</div>
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 is compatible. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 is compatible. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. 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 was computed. 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. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.