CustomCalendarControl 1.0.5

dotnet add package CustomCalendarControl --version 1.0.5
NuGet\Install-Package CustomCalendarControl -Version 1.0.5
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="CustomCalendarControl" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CustomCalendarControl --version 1.0.5
#r "nuget: CustomCalendarControl, 1.0.5"
#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.
// Install CustomCalendarControl as a Cake Addin
#addin nuget:?package=CustomCalendarControl&version=1.0.5

// Install CustomCalendarControl as a Cake Tool
#tool nuget:?package=CustomCalendarControl&version=1.0.5

CalendarControl

Calendar Control - is a cross-platform plugin for Xamairn Forms that allows you to display a customized calendars in your app.

calendar

<h2> How To Use </h2>

Available on NuGet: https://www.nuget.org/packages/CustomCalendarControl/1.0.4
Install this Plugin in your Xamarin Form Project.

Write following code on button click event.

var calendarPage = new CalendarPage(DateTime.Now, null);
calendarPage.SelectedDateCommand = new Command<DateTime>((item) =>
{
    //Perform operation on selected Date
});
await PopupNavigation.Instance.PushAsync(calendarPage);

This control is using Rg Popup plugin to display the calendar so you need to Initialize the Rg Popup Plugin in platform-specific.

Android MainActivity.cs

   Rg.Plugins.Popup.Popup.Init(this);

iOS AppDelegate.cs

   Rg.Plugins.Popup.Popup.Init();

<h2> Calendar UI Customization </h2>

Customize Calendar

Following Property, you can use for customizing calendar UI

var calendarPage = new CalendarPage(DateTime.Now, 
                new CustomCalendarControl.Models.CalendarTheme
{
        //Header UI Property
        HeaderBackgroundColor = Color.LightBlue,
        HeaderTextColor = Color.Yellow,
 
        //Left & Right Arrow Color and Month Color Property
        LeftRightArrowColor = Color.Red,
        MonthColor = Color.Gray,
 
         //Selected Date Background & Selected Text Color
         SelectedDateBackGroundColor = Color.LightGreen,
         SelectedDateTextColor = Color.Red,
 
         //Okay Cancel Button Text Color
         OkayButtonTextColor = Color.Blue,
         CancelButtonTextColor= Color.Black
}) ;
calendarPage.SelectedDateCommand = new Command<DateTime>((item) =>
{
         //Perform operation on selected Date
});
await PopupNavigation.Instance.PushAsync(calendarPage);
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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.5 620 12/4/2021
1.0.4 315 11/29/2021