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

SchedulerControl.ResourceColors Property

Specifies the collection of resource colors. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling

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

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

Declaration

[Browsable(false)]
public ColorCollection ResourceColors { get; set; }

Property Value

Type Description
DevExpress.Xpf.Scheduling.ColorCollection

A collection of resource colors.

Remarks

The ResourceItem.Color property defines the resource color and has the highest priority. If you set this property (either directly or by mapping), the SchedulerControl.ResourceBrushSchemas and ResourceColors settings are ignored.

If you do not use the ResourceItem.Color property, the Scheduler takes a resource item color from the ResourceColors property.

You can set ResourceColors directly for all themes:

<dxsch:SchedulerControl.ResourceColors>
    <Color>Red</Color>
    <Color>Green</Color>
</dxsch:SchedulerControl.ResourceColors>

An alternative approach is to override the ResourceColors palette for a certain theme. To do this, use the DevExpress.Xpf.Scheduling.Themes.SchedulerThemeKeys.ResourceColors and DevExpress.Xpf.Scheduling.Themes.SchedulerThemeKeys.ResourceColors_Classic resource keys. The DevExpress.Xpf.Scheduling.Themes.SchedulerThemeKeys.ResourceColors_Classic resource key is only used in the Classic scheduler appearance style:

<dxsch:ColorCollection x:Key="{dxscht:SchedulerThemeKey ResourceKey=ResourceColors, ThemeName=Office2019Colorful}">
    <Color>Red</Color>
    <Color>Green</Color>
</dxsch:ColorCollection>

If you customized BrushSchema or SchedulerControl.ResourceBrushSchemas, it will work in the themes listed below. If the Classic mode is enabled, it will work in all themes.

  • Office2019 (White, DarkGray, Colorful, Black)
  • VisualStudio2017 (Light, Dark, Blue)
  • Office2016SE (White, DarkGray, Colorful, Black)
  • Metropolis (Light, Dark)
  • DeepBlue
See Also