Skip to main content

Calendar Class

The calendar that displays appointments.

Namespace: DevExpress.WinUI.Scheduler

Assembly: DevExpress.WinUI.Scheduler.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

[ContentProperty(Name = "AppointmentsSource")]
public class Calendar :
    CalendarBase

Remarks

To use the Calendar, set its instance as the SchedulerControl‘s content.

         <Scheduler:SchedulerControl >
            <Scheduler:Calendar AppointmentsSource="{Binding Appointments}">
                <Scheduler:Calendar.AppointmentMappings>
                    <Scheduler:AppointmentMappings
                            Id="Id"
                            AllDay="AllDay"
                            Start="Start"
                            End="End"
                            LabelId="LabelId"
                            Subject="Subject"
                            Description="Description"
                            Location="Location"
                            RecurrenceRule="RecurrenceInfo">
                    </Scheduler:AppointmentMappings>
                </Scheduler:Calendar.AppointmentMappings>
            </Scheduler:Calendar>
        </Scheduler:SchedulerControl>

Inheritance

Object
DependencyObject
DevExpress.WinUI.Core.Internal.LogicalElement
CalendarBase
Calendar
See Also