CustomCalendarControl 1.0.5
dotnet add package CustomCalendarControl --version 1.0.5
NuGet\Install-Package CustomCalendarControl -Version 1.0.5
<PackageReference Include="CustomCalendarControl" Version="1.0.5" />
paket add CustomCalendarControl --version 1.0.5
#r "nuget: CustomCalendarControl, 1.0.5"
// 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.
<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>
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 | Versions 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. |
-
.NETStandard 2.0
- Refractored.MvvmHelpers (>= 1.6.2)
- Rg.Plugins.Popup (>= 2.0.0.13)
- Xamarin.Essentials (>= 1.5.3.2)
- Xamarin.Forms (>= 5.0.0.2244)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.