Calendar Class
In This Article
The calendar that displays appointments.
Namespace: DevExpress.UI.Xaml.Scheduler
Assembly: DevExpress.UI.Xaml.Scheduler.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
#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.UI.Xaml.Internal.LogicalElement
CalendarBase
Calendar
See Also