Skip to main content

AppointmentResourceEdit Class

A combo box control used to select a resource for an appointment. It facilitates the creation of custom Edit Appointment forms.

Namespace: DevExpress.Xpf.Scheduler.UI

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

#Declaration

[DXToolboxBrowsable]
[ToolboxTabName("DX.14.2: Scheduling")]
public class AppointmentResourceEdit :
    SchedulerBoundComboBoxEdit

#Remarks

The AppointmentResourceEdit control is a combo box editor with images displayed along with text captions. To link a AppointmentResourceEdit control to a scheduler, set the SchedulerControl property to the required SchedulerControl object.

The combo box loads information about visible resources (with Resource.Visible set to true) and displays it as follows:

  • Resource.Caption as text caption,
  • a colored rectangle is created automatically.

The typical appearance of a AppointmentResourceEdit is shown in the picture below.

DXScheduler_AppointmentResourceEdit

#Examples

This example demonstrates how to bind the AppointmentResourceEdit control on the custom Edit Appointment form to the SchedulerControl object via the SchedulerControl and AppointmentFormController.Control properties, and select the resource associated with the appointment by the resource's ID.

<dxschdui:AppointmentResourceEdit SchedulerControl="{Binding Controller.Control}"
                                  EditValue="{Binding Controller.ResourceId, Mode=TwoWay}" />
See Also