wpf-devexpress-dot-xpf-dot-gantt-dot-workdayrule-3245debd.md
Gets or sets the rule recurrence (weekly, daily, etc.). This is a dependency property.
Namespace : DevExpress.Xpf.Gantt
Assembly : DevExpress.Xpf.Gantt.v25.2.dll
NuGet Package : DevExpress.Wpf.Gantt
public RecurrenceBase Recurrence { get; set; }
Public Property Recurrence As RecurrenceBase
| Type | Description |
|---|---|
| RecurrenceBase |
A RecurrenceBase descendant that specify the rule’s recurrence.
|
<dxgn:GanttControl ItemsSource="{Binding Tasks}">
<dxgn:GanttControl.View>
<dxgn:GanttView
NonworkingDayDisplayMode="Show"
NonworkingTimeDisplayMode="Show">
<dxgn:GanttView.WorkdayRules>
<!-- Applies to every Friday -->
<dxgn:WorkdayRule IsWorkday="False" Recurrence="{dxgn:Weekly DayOfWeek=Friday}" />
<!-- Applies to every second Saturday -->
<dxgn:WorkdayRule IsWorkday="False" Recurrence="{dxgn:Weekly DayOfWeek=Saturday, Interval=2}" />
</dxgn:GanttView.WorkdayRules>
</dxgn:GanttView>
</dxgn:GanttControl.View>
</dxgn:GanttControl>
See Also