« Radzen » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
 
(5 versions intermédiaires par le même utilisateur non affichées)
Ligne 50 : Ligne 50 :
<filebox fn='_Host.cshtml'>
<filebox fn='_Host.cshtml'>
<head>
<head>
     <link rel="stylesheet" href="_content/Radzen.Blazor/css/[theme].css">
     <link rel="stylesheet" href="_content/Radzen.Blazor/css/[theme]-base.css">
</filebox>
</filebox>


{{info | {{boxx|[theme]}} will theme the whole application while {{boxx|[theme-base]}} will only theme the Razor components.}}
{{info | {{boxx|[theme]}} will theme the whole application while {{boxx|[theme]-base}} will only theme the Razor components.}}
 
<filebox fn='radzen-dark-theme-fix.css' collapsed>
/* form border color */
.rz-colorpicker, .rz-lookup-search input, .rz-spinner, .rz-calendar .rz-inputtext, .rz-multiselect, .rz-dropdown, .mask, .rz-textarea, .rz-textbox, .rz-chkbox-box {
    border-color: lightslategray;
    background-color: inherit; /* or initial */
}
 
/* form border color on mouse hover */
.rz-autocomplete:hover, .rz-radiobutton-box:hover:not(.rz-state-disabled), .rz-chkbox-box:hover:not(.rz-state-disabled), .rz-colorpicker:hover:not(:focus), .rz-lookup-search input:hover:not(:focus), .rz-spinner:hover:not(:focus), .rz-calendar .rz-inputtext:hover:not(:focus), .rz-multiselect:hover:not(:focus), .rz-dropdown:hover:not(:focus), .mask:hover:not(:focus), .rz-textarea:hover:not(:focus), .rz-textbox:hover:not(:focus) {
    border-color: lightskyblue;
}
 
/* placeholde color */
input::placeholder {
  color: white;
}
 
/* when outline is displayed, hide border */
:focus-visible {
    border-color: transparent !important;
}
</filebox>


= [https://blazor.radzen.com/get-started Installation] =
= [https://blazor.radzen.com/get-started Installation] =

Dernière version du 29 mai 2021 à 16:49

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]-base.css">
[theme] will theme the whole application while [theme]-base will only theme the Razor components.
radzen-dark-theme-fix.css
/* form border color */
.rz-colorpicker, .rz-lookup-search input, .rz-spinner, .rz-calendar .rz-inputtext, .rz-multiselect, .rz-dropdown, .mask, .rz-textarea, .rz-textbox, .rz-chkbox-box {
    border-color: lightslategray;
    background-color: inherit; /* or initial */
}

/* form border color on mouse hover */
.rz-autocomplete:hover, .rz-radiobutton-box:hover:not(.rz-state-disabled), .rz-chkbox-box:hover:not(.rz-state-disabled), .rz-colorpicker:hover:not(:focus), .rz-lookup-search input:hover:not(:focus), .rz-spinner:hover:not(:focus), .rz-calendar .rz-inputtext:hover:not(:focus), .rz-multiselect:hover:not(:focus), .rz-dropdown:hover:not(:focus), .mask:hover:not(:focus), .rz-textarea:hover:not(:focus), .rz-textbox:hover:not(:focus) {
    border-color: lightskyblue;
}

/* placeholde color */
input::placeholder {
  color: white;
}

/* when outline is displayed, hide border */
:focus-visible {
    border-color: transparent !important;
}

Installation

Bash.svg
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>