How to create the recurring time regions for week view in WPF Scheduler?
Create recurring time regions in the SfScheduler with the help of the RecurrenceRule property for the SpecialTimeRegions.
Please refer to the user guide documentation of the RecurrenceRule property for the SpecialTimeRegion.
C#
Create new recurring time regions for the SpecialTimeRegions Property of DaysViewSettings in the SfSchedule.
public class SchedulerBehavior : Behavior<SfScheduler>
{
SfScheduler scheduler;
protected override void OnAttached()
{
base.OnAttached();
scheduler = this.AssociatedObject;
scheduler.DaysViewSettings.SpecialTimeRegions.Add(new SpecialTimeRegion
{
StartTime = DateTime.Today.AddHours(13),
EndTime = DateTime.Today.AddHours(14),
Text = "Lunch",
CanEdit = false,
Background = Brushes.Black,
Foreground = Brushes.White,
CanMergeAdjacentRegions = true,
RecurrenceRule = "FREQ=DAILY;INTERVAL=1"
});
}
protected override void OnDetaching()
{
base.OnDetaching();
this.scheduler = null;
}
}
Conclusion
I hope you enjoyed learning about how to create the recurring time regions for week view in WPF Scheduler (Calendar).
You
can refer to our WPF
Scheduler feature tour
page to know
about its other groundbreaking feature representations. You can also
explore
documentation
to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!