RazerComponent 1.0.18

dotnet add package RazerComponent --version 1.0.18
                    
NuGet\Install-Package RazerComponent -Version 1.0.18
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RazerComponent" Version="1.0.18" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RazerComponent" Version="1.0.18" />
                    
Directory.Packages.props
<PackageReference Include="RazerComponent" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add RazerComponent --version 1.0.18
                    
#r "nuget: RazerComponent, 1.0.18"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package RazerComponent@1.0.18
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=RazerComponent&version=1.0.18
                    
Install as a Cake Addin
#tool nuget:?package=RazerComponent&version=1.0.18
                    
Install as a Cake Tool

Calendar Blazor Component

Development

  • Visual Studio 2022
  • Blazor Server Project
  • .NET 6

Use Calendar Component

Install nuget package

NuGet Package Package Manager Console

Install-Package RazerComponent

Blazer Page

<Calendar @ref="CalendarCtrl_1" CalendarItems="Items" OnClick="CalendarItem_Click"></Calendar>
@code{ 
    private Calendar CalendarCtrl_1;
    private List<CalendarItem> Items;
    private string CalendarName;

    protected override void OnInitialized()
    {
        Items = new List<CalendarItem>();
        Items.Add(new CalendarItem(1, new DateTime(2021, 10, 5), "Test day 01"));
        Items.Add(new CalendarItem(2, new DateTime(2021, 10, 5), "Test day 02"));
        Items.Add(new CalendarItem(3, new DateTime(2021, 11, 1), "Test day 03"));
        //Set background color
        Items.Add(new CalendarItem(4, new DateTime(2021, 12, 25), "Merry Christmas", "bg-sucess"));
        Items.Add(new CalendarItem(5, new DateTime(2022, 1, 1), "Happy New Year", "bg-color"));
    }

    private async Task CalendarItem_Click(CalendarItem item)
    {
        await Task.Delay(0);
        CalendarName = item.Name;
    }
}

Calendar Component Layout

Calendar Component Layout

Reference

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.18 336 11/2/2023
1.0.17 234 9/12/2023
1.0.16 359 3/23/2023
1.0.15 382 2/17/2023
1.0.14 366 2/17/2023
1.0.13 369 2/17/2023
1.0.12 406 12/19/2022
1.0.11 462 11/28/2022
1.0.9 468 11/7/2022
1.0.8 644 11/29/2021
1.0.7 509 11/17/2021
1.0.6 492 11/17/2021
1.0.5 475 11/16/2021
1.0.4 468 11/9/2021
1.0.3 455 11/9/2021
1.0.2 495 11/8/2021
1.0.1 469 11/8/2021
1.0.0 514 10/27/2021