Skip to main content
A newer version of this page is available. .

AppointmentLabel.Color Property

Gets or sets the color of the appointment label.

Namespace: DevExpress.Xpf.Scheduler

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Scheduler, DevExpress.Wpf.Scheduler

Declaration

public Color Color { get; set; }

Property Value

Type Description
Color

A Color value which represents the color used for an appointment label.

Remarks

Important

You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.

Example

This example demonstrates how to add items to the collection of appointment labels within the appointment storage using the AppointmentStorage.Labels property.

<dxsch:SchedulerStorage.AppointmentStorage>
    <dxsch:AppointmentStorage>
        <dxsch:AppointmentStorage.Labels>
            <dxsch:AppointmentLabel Color="Aqua" DisplayName="Lunch Time" MenuCaption="Lunch Time"/>
            <dxsch:AppointmentLabel Color="Violet" DisplayName="Meeting" MenuCaption="Meeting"/>
            <dxsch:AppointmentLabel Color="Yellow" DisplayName="Presentation" MenuCaption="Presentation"/>
        </dxsch:AppointmentStorage.Labels>
    </dxsch:AppointmentStorage>
</dxsch:SchedulerStorage.AppointmentStorage>
See Also