|
<Syncfusion:SfSchedule x:Name="Schedule" ScheduleView="DayView" DataSource="{Binding Meetings}">
<Syncfusion:SfSchedule.AppointmentMapping>
<Syncfusion:ScheduleAppointmentMapping
ColorMapping="Color"
EndTimeMapping="To"
StartTimeMapping="From"
SubjectMapping="EventName"/>
</Syncfusion:SfSchedule.AppointmentMapping>
</Syncfusion:SfSchedule> |
<xForms:SfSchedule
x:Name="scheduleDiary"
Grid.Row="1"
AllowAppointmentDrag="True"
CellTapped="Schedule_OnCellTapped"
DataSource="{Binding AllAppointments}"
ScheduleView="MonthView"
ShowAppointmentsInline="true">
<xForms:SfSchedule.AppointmentMapping>
<xForms:ScheduleAppointmentMapping
ColorMapping="PersonColour"
EndTimeMapping="ToDate"
StartTimeMapping="FromDate"
SubjectMapping="Details" />
</xForms:SfSchedule.AppointmentMapping>
<xForms:SfSchedule.DragDropSettings>
<xForms:DragDropSettings
AllowNavigate="true"
AllowScroll="True"
ShowTimeIndicator="true">
<xForms:DragDropSettings.TimeIndicatorStyle>
<xForms:TimeIndicatorStyle
TextColor="GreenYellow"
TextFormat="hh:mm"
TextSize="13" />
</xForms:DragDropSettings.TimeIndicatorStyle>
</xForms:DragDropSettings>
</xForms:SfSchedule.DragDropSettings>
<xForms:SfSchedule.MonthViewSettings>
<xForms:MonthViewSettings AppointmentDisplayMode="Appointment" AppointmentIndicatorCount="20" />
</xForms:SfSchedule.MonthViewSettings>
</xForms:SfSchedule>|
<Syncfusion:SfSchedule x:Name="Schedule" ScheduleView="MonthView"
ShowAppointmentsInline="true"
DataSource="{Binding AllEvents}">
<Syncfusion:SfSchedule.AppointmentMapping>
<Syncfusion:ScheduleAppointmentMapping
ColorMapping="PersonColour"
EndTimeMapping="ToDate"
StartTimeMapping="FromDate"
SubjectMapping="Details" />
</Syncfusion:SfSchedule.AppointmentMapping>
<Syncfusion:SfSchedule.MonthViewSettings>
<Syncfusion:MonthViewSettings AppointmentDisplayMode="Appointment"
AppointmentIndicatorCount="20" />
</Syncfusion:SfSchedule.MonthViewSettings>
</Syncfusion:SfSchedule> |