BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<schedule:SfSchedule x:Name="schedule" ScheduleView="MonthView" DataSource="{Binding AppointmentSource}"> <schedule:SfSchedule.MonthViewSettings> <schedule:MonthViewSettings AppointmentDisplayMode="Appointment" > </schedule:MonthViewSettings> </schedule:SfSchedule.MonthViewSettings> </schedule:SfSchedule>
var source = new ScheduleAppointmentCollection(); source.Add(new ScheduleAppointment() { StartTime = DateTime.Now, IsAllDay = true, Subject = "Test", Location = "Test", MinHeight = 15, Color = Color.Yellow }); source.Add(new ScheduleAppointment() { StartTime = DateTime.Now, IsAllDay = true, Subject = "Test", Location = "Test", MinHeight = 15, Color = Color.Blue }); AppointmentSource = source;