Radzen
De Banane Atomic
Aller à la navigationAller à la recherche
Links
CheckBoxList
MyPage.razor |
<RadzenCheckBoxList @bind-Value="@selectedItemIds" TValue="int" Data="@items" TextProperty="Name" ValueProperty="Id" /> |
MyPage.razor.cs |
// has to be an IEnumerable private IEnumerable<int> selectedItemIds; private IReadOnlyCollection<ItemDto> items; |
Numeric
MyPage.razor |
<RadzenNumeric TValue="int?" Min="1" Max="10" @bind-Value=@value Placeholder="Enter or clear value" /> |
MyPage.razor.cs |
int? value; |
Themes
Theme | Description |
---|---|
default | |
dark | dark theme |
humanistic | |
software |
_Host.cshtml |
<head> <link rel="stylesheet" href="_content/Radzen.Blazor/css/[theme].css"> |
[theme] will theme the whole application while [theme]-base will only theme the Razor components. |
Installation
dotnet add package Radzen.Blazor |
_Imports.razor |
@using Radzen @using Radzen.Shared @using Radzen.Blazor |
_Host.cshtml |
<head> <link rel="stylesheet" href="_content/Radzen.Blazor/css/default-base.css"> @* ... *@ <script src="_content/Radzen.Blazor/Radzen.Blazor.js"></script> </body> |