How to use Radzen Blazor Components


How to use Radzen Blazor Components

Radzen Blazor Components is native Blazor UI Control



Setp: 1

Create a Blazor Project
Setp: 2

Install Radzen.Blazor






Setp: 3

 Import the namespace

Open the _Imports.razor file of your Blazor application and add these two lines 
@using Radzen and @using Radzen.Blazor.

Setp: 4

Include a theme

Open the _Host.cshtml file (server-side Blazor) and include a theme CSS file by adding this 
 <link rel="stylesheet" href="_content/Radzen.Blazor/css/default.css">

Step: 5

Include Radzen.Blazor.js


Open the _Host.cshtml file (server-side Blazor) and include this 

<script src="_content/Radzen.Blazor/Radzen.Blazor.js"></script>


Step: 6

Use a component

Use any Radzen Blazor component by typing its tag name in a Blazor page e.g.

<RadzenButton Text="Hi"></RadzenButton>

<BlazorLinkOnBuild>false</BlazorLinkOnBuild>


Data-binding a property
<RadzenButton Text="@text"></RadzenButton>
@code {
  string text = "Hi";
}
Handing events
<RadzenButton Click="@ButtonClicked" Text="Hi"></RadzenButton>
@code {
  void ButtonClicked()
  {
    //
  }

}

For More Details please visit:

How to use Radzen Blazor AutoComplete:

https://bit.ly/36WAjHM

How to use Radzen Blazor DataGrid:



How to use Radzen Blazor DropDownDataGrid:



How to use Radzen Blazor DataList:



For More Video Link: 

👉FOLLOW US:
On Facebook: https://www.facebook.com/ashproghelp
On Blog: http://ashproghelp.blogspot.com

👉ASP.NET Core Tutorial Playlist:
============================

👉ASP.NET Core WEB API Playlist:
============================

👉Blazor Tutorial Playlist:
============================

👉ASP.NET Core Authentication Playlist:
============================

👉SignalR Tutorials Playlist:
============================

👉KENDO UI Tutorials (WEB DEVELOPMENT) Playlist:
=====================================

👉KENDO UI in ASP.NET Core Playlist:
=====================================

👉Files or Image Upload Playlist:
=====================================

👉==========AMCHARTS GRAPH JQUERY PLAYLIST==========

👉=================RDLC Report PlayList===============

👉=================RDLC PRINT===============
How to print without showing report viewer in RDLC report - C#

👉=================RDLC & Crystal Report===============

👉=================SQL Server Tutorials (Series)===============

👉=========TEAM FOUNDATION SERVER=============
TFS source control for beginners:

👉==========ANDROID APP DEVELOPMENT============
Quick Learn Android full basic in 45 minutes:

👉=================C# Basic=============================

Post a Comment

0 Comments