# blazor.radzen.com **Repository Path**: idwyx/blazor.radzen.com ## Basic Information - **Project Name**: blazor.radzen.com - **Description**: Sample application showcasing the Radzen Blazor Components - **Primary Language**: CSS - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-01-18 - **Last Updated**: 2023-01-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Radzen Blazor Components examples This is the source code of of the application behind [blazor.radzen.com](https://blazor.radzen.com) ## Commercial support Paid support for the Radzen Blazor Components is available as part of the [Radzen Professional subscription](https://www.radzen.com/pricing/). Our flagship product Radzen provides tons of productivity features for Blazor developers: - The first in the industry WYSIWYG Blazor design time canvas - Scaffolding a complete CRUD applications from a database - Built-in security - authentication and authorization - Visual Studio Code and Professional support - Deployment to IIS and Azure - Dedicated support with 24 hour guaranteed response time - Active community forum ## Get started with the Radzen Blazor Components ### Install Radzen Blazor Components are distributed as the Radzen.Blazor nuget package. You can add them to your project in one of the following ways - Install the package from command line by running dotnet add package Radzen.Blazor - Add the project from the Visual Nuget Package Manager - Manually edit the .csproj file and add a project reference ### Import the namespace Open the `_Imports.razor` file of your Blazor application and add this line `@using Radzen.Blazor`. ### Include a theme Download the [Radzen.Blazor.Themes.zip](https://github.com/akorchev/blazor.radzen.com/raw/master/Radzen.Blazor.Themes.zip) and unzip it somewhere. It contains two directorires: `fonts` and `css`. Copy those two directories to the `wwwroot` folder of your Blazor application. Open the `_Host.cshtml` file (server-side Blazor) or `wwwroot/index.html` (client-side Blazor) and include a theme CSS file by adding this snippet `` ### Use a component Use any Radzen Blazor component by typing its tag name in a Blazor page e.g. ```html ``` If you are using client-side Blazor also add the following code to your `.csproj` file (after the closing `RazorLangVersion` element): ```html false ``` It is a workaround for a [known issue](https://github.com/mono/mono/issues/12917) when using IQueryable. #### Data-binding a property ```razor @code { string text = "Hi"; } ``` #### Handing events ```razor @code { void ButtonClicked() { } } ```