Xceed Toolkit for .NET Maui v2.0 Documentation
Xceed.Maui.Toolkit Assembly / Xceed.Maui.Toolkit Namespace / Calendar Class
Members Example


In This Topic
    Calendar Class
    In This Topic
    By default, this control displays all of the days within a specific month of a chosen year.
    Object Model
    Calendar ClassCalendarBlackoutDatesCollection ClassCalendarDateRange ClassCalendarSelectedDatesCollection Class
    Syntax
    'Usage
     
    
    Dim instance As Calendar
    Remarks

    The selected month can easily be changed with the Up & Down RepeatButtons or by clicking on the month's name, which will allow the user to choose from one of the 12 months in the year.

    There are also 5 CalendarSelectionModes which can be used for selecting dates; they allow to choose values ranging from a single date to mutiple CalendarDateRanges.

    Furthermore, single dates or CalendarDateRanges can be blacked out to make sure that they are not selected by the user. This is done via the CalendarBlackoutDatesCollection class.

    Note that when needed, the CalendarMode can be changed to display the months in a year or the years in a decade.

    Example

    The following code would display this control:

    <xctk:Calendar SelectionMode="Range"
                   SelectedDate="2024-04-29"
                   Margin="20"
                   BorderBrush="Yellow"
                   BorderThickness="2"
                   WidthRequest="260"
                   HeightRequest="300"/>
    Inheritance Hierarchy

    System.Object
       Microsoft.Maui.Controls.BindableObject
          Microsoft.Maui.Controls.Element
             Microsoft.Maui.Controls.NavigableElement
                Microsoft.Maui.Controls.VisualElement
                   Microsoft.Maui.Controls.View
                      Microsoft.Maui.Controls.Compatibility.Layout
                         Microsoft.Maui.Controls.TemplatedView
                            Xceed.Maui.Toolkit.Control
                               Xceed.Maui.Toolkit.Calendar

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also