Skip to main content

ResourcesCheckedListBoxControl Class

A checked list box control used to filter resources within the Scheduler Control.

Namespace: DevExpress.Xpf.Scheduler.UI

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

Declaration

[ToolboxTabName("DX.14.2: Scheduling")]
[DXToolboxBrowsable]
public class ResourcesCheckedListBoxControl :
    ListBoxEdit,
    IResourceFilterControl,
    IBatchUpdateable,
    IBatchUpdateHandler
<ToolboxTabName("DX.14.2: Scheduling")>
<DXToolboxBrowsable>
Public Class ResourcesCheckedListBoxControl
    Inherits ListBoxEdit
    Implements IResourceFilterControl,
               IBatchUpdateable,
               IBatchUpdateHandler

Remarks

The ResourcesCheckedListBoxControl class specifies an additional control in the DXScheduler Suite for Silverlight. It can be used to allow an end-user to filter the resources for appointments shown in the scheduler control. To bind the ResourcesCheckedListBoxControl to the scheduler control, use the ResourcesCheckedListBoxControl.SchedulerControl property.

The common appearance of the ResourcesCheckedListBoxControl is shown in the image below:

DXScheduler_ResourcesCheckedListBoxControl

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