Synergit.Maui.DateTimePicker 0.7.0-beta

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

// Install Synergit.Maui.DateTimePicker as a Cake Tool
#tool nuget:?package=Synergit.Maui.DateTimePicker&version=0.7.0-beta&prerelease

Maui Nullable and Clearable DateTimePicker

The Nullable DateTimePicker is a custom calendar control for selecting a nullable date and time value in a .NET MAUI application. It provides a consistent and platform-independent user interface for selecting dates, and allows the user to clear the value if needed. Is based on <a href="https://github.com/sebarslan/Maui.NullableDateTimePicker" target="_blank">Sebarslan.Maui.NullableDateTimePicker</a>. Our company needed to convert this component to .NET 8, change its design and make other customizations.

This control uses the <a href="https://github.com/CommunityToolkit/Maui" target="_blank">CommunityToolkit.Maui</a> Popup.

NuGet

Usage

To use the Nullable DateTimePicker control in your .NET MAUI application, follow these steps:

0- Add the Synergit.Maui.DateTimePicker nuget package to your project and add the .ConfigureSGDateTimePicker() element to the MauiProgram.cs file in your project.

<pre> <code> public static MauiApp CreateMauiApp() { var builder = MauiApp.CreateBuilder(); builder.UseMauiApp<App>(); .ConfigureSGDateTimePicker() .... </code> </pre>

Usage 1: Use DateTimePicker as ContentView control

1- Add the Synergit.Maui.DateTimePicker control to your XAML layout file:

xmlns:sgdtp="clr-namespace:Synegit.Maui.DateTimePicker;assembly=Synergit.Maui.DateTimePicker" <pre> <code> <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:sgdtp="clr-namespace:Synegit.Maui.DateTimePicker;assembly=Synergit.Maui.DateTimePicker" x:Class="Maui.NullableDateTimePicker.Samples.MainPage"> </code> </pre>

2- And add the following code to the place where you want to use DateTimePicker and then connect the NullableDateTime property with the Datetime Property in your ViewModel. <pre> <code> <sgdtp:SGDateTimePicker Padding="5,0,5,0" CornerRadius="5" HeightRequest="40" HorizontalOptions="Start" Mode="DateTime" NullableDateTime="{Binding MyDateTime}" SelectedDayStyle="{StaticResource SelectedDayStyle}" ShowWeekNumbers="True" WidthRequest="300" /> </code> </pre>

Usage 2: Use direct calendar popup with your own entry and button

1- Add your entry or button for datetime in your xaml page (eg. MainPage.xaml) <pre> <code> <HorizontalStackLayout HorizontalOptions="Fill" HeightRequest="40"> <Entry x:Name="DateTimeEntry" Text="{Binding MyDateTime, StringFormat='{0:g}'}" HorizontalOptions="Fill" VerticalOptions="Fill" IsReadOnly="True"> <Entry.GestureRecognizers> <TapGestureRecognizer Tapped="DateTimePicker_Clicked" /> </Entry.GestureRecognizers> </Entry> <ImageButton Source="{Binding CalendarIcon}" Clicked="DateTimePicker_Clicked" HorizontalOptions="Fill" VerticalOptions="Fill" Margin="0" Padding="2" WidthRequest="30" /> </HorizontalStackLayout> </code> </pre>

2- Then, when you click on the button or entry, define the options and call SGDateTimePicker.OpenCalendarAsync(options) to open the calendar in your xaml.cs file. (eg. MainPage.xaml.cs) <pre> <code> private async void DateTimePicker_Clicked(object sender, EventArgs e) { ISGDateTimePickerOptions dtpOptions = new SGDateTimePickerOptions { NullableDateTime = MyDateTime, Mode = PickerModes.DateTime, ShowWeekNumbers = true // .. other calendar options };

var result = await SGDateTimePickerOptions.OpenCalendarAsync(dtpOptions);
if (result is PopupResult popupResult && popupResult.ButtonResult != PopupButtons.Cancel)
{
    MyDateTime = popupResult.NullableDateTime;
    // DateTimeEntry.Text = popupResult.NullableDateTime?.ToString("g"); //If you are not using ViewModel
}

} </code> </pre>

More examples, please see the samples project

Options

DateTimePicker Calendar options

Option Description Default Value
NullableDateTime Gets or sets the nullable date and time value of the control. null
Mode Specifies the picker mode of the control. Valid values are Date, DateTime, and Time. Date
MinDate Minimum selectable date of the control. DateTime.MinValue
MaxDate Maximum selectable date of the control. DateTime.MaxValue
OkButtonText The text for the OK button. OK
CancelButtonText The text for the Cancel button. Cancel
ClearButtonText Gets or sets the text for the Clear button. Clear
ShowClearButton Clear button can be hidden/shown. If true, the button is displayed. true
HeaderForeColor Gets or sets the foreground color of the control's header. White
HeaderBackgroundColor Background color of the calendar's header. #2b0b98
ForeColor It is used for the color of texts that cannot be styled in the calendar. Dark:White, Light:Black
BodyBackgroundColor Background color of the calendar. White
ToolButtonsStyle Style of the control's tool buttons. null
DayStyle Style of the days in the calendar. null
SelectedDayStyle Style of the selected day in the calendar. null
DayNamesStyle Style of the day names in the calendar. null
OtherMonthDayStyle Style of the other month days in the calendar. null
DisabledDayStyle Style of the disabled days in the calendar. null
WeekNumberStyle Style of the week numbers in the calendar. null
ShowWeekNumbers Determines whether to display week numbers in the calendar. false
ShowOtherMonthDays Determines whether to display other month days in the calendar. true

Datetimepicker Input Options (If NullableDateTimePicker is used as ContentView)

Option Description Default Value
Format Specifies the display format for the date or time. for date: d, for datetime: g, for time: t
BackgroundColor Background color of the datetimepicker control. White
Icon Imagesource for the icon. null
TextColor Text color of the entry. Black
FontSize Font size of the entry. 14
BorderColor Border color of the datetimepicker control none
BorderWidth Border width of the control 0
CornerRadius Corner radius of the control 0
PlaceHolder Placeholder of the entry empty

SGDateTimePickerChanged Event (If SGDateTimePicker is used as ContentView)

The SGDateTimePickerChanged event is used to indicate when a NullableDateTime value has been changed. This event is commonly used in programming or software environments and is triggered when the NullableDateTime value is modified.

The event utilizes the DateTimeChangedEventArgs class as its argument. The DateTimeChangedEventArgs class contains additional information that is carried at the moment the event is triggered. It may include details about the date and time change, such as the old DateTime value and the new DateTime value.

Below is an example code snippet illustrating the usage of the "NullableDateTimeChanged" event and the "DateTimeChangedEventArgs" argument class: <pre> <code> SGDateTimePicker dateTimePicker = new SGDateTimePicker(); dateTimePicker.SGDateTimePickerChanged += OnSGDateTimePickerChanged;

private static void OnSGDateTimePicker(object sender, DateTimeChangedEventArgs e) { Console.WriteLine("DateTime changed!"); Console.WriteLine("Old DateTime: " + e.OldDateTime); Console.WriteLine("New DateTime: " + e.NewDateTime); } </code> </pre>

.NET MAUI handler was used in the test project to remove the underline in the original entry. Please refer to the MauiProgram.cs file in the sample project. For more detailed information about handlers, please check: https://learn.microsoft.com/en-us/dotnet/maui/user-interface/handlers/customize?view=net-maui-8.0

License

The Nullable DateTimePicker control is licensed under the MIT License. See <a href="LICENSE.txt">LICENSE file</a> for more information.

Contributing

Contributions are welcome!

Screenshot

on ios, android, windows

DateTimePicker

Changelog

1.2.1

  • Layout adjustments
  • Fixed: The months list was opening in Time mode.

0.7.0

  • Initial Release.
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
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
0.7.0-beta 109 11/29/2023