Skip to main content

ResourcesCheckedListBoxControl.SchedulerControl Property

Gets or sets the scheduler control which is assigned to the ResourcesCheckedListBoxControl.

Namespace: DevExpress.Xpf.Scheduler.UI

Assembly: DevExpress.Xpf.Scheduler.v14.2.dll

Declaration

public SchedulerControl SchedulerControl { get; set; }
Public Property SchedulerControl As SchedulerControl

Property Value

Type Description
SchedulerControl

A SchedulerControl object specifying the scheduler whose resources will be filtered by this checked list box.

Remarks

Use the SchedulerControl property to assign a SchedulerControl object to a ResourcesCheckedListBoxControl object when creating a scheduling application. After SchedulerControl has been assigned to the Resources Checked List Box control, then the Resources Checked List Box control can be used to filter resources of the scheduler.

Examples

This example demonstrates how to bind the ResourcesCheckedListBoxControl control to the SchedulerControl object via the ResourcesCheckedListBoxControl.SchedulerControl property.

<dxschdui:ResourcesCheckedListBoxControl SchedulerControl="{Binding ElementName=schedulerControl1}"/>
See Also