Calendar
Note: You can check the Avalonia docs for the Calendar and Calendar API if you need more information.
For Avalonia.FuncUI's DSL properties you can check Calendar.fs
The Calendar control is a standard Calendar control for users to select date(s) or date ranges.
Usage
Set a Date
If no calendar date is set, it will default to today's date.
Select Multiple Dates
For more information about selection modes you can see the SelectionModes API but more verbosely you can look at the ListBox Selection Modes for a better description of what they do.
Select Calendar Month First
You can change the CalendarMode so that you can select the year first with CalendarMode.Decade
, the month first with CalendarMode.Year
, or have the standard (default) format with CalendarMode.Month
.jok
Display Only the Upcoming Week
Last updated