Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ColorEdit.RecentColors Property

Gets the recent colors.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public CircularList<Color> RecentColors { get; }

#Property Value

Type Description
DevExpress.Xpf.Editors.CircularList<Color>

The circular list that contains recent colors.

#Remarks

Clicking the More Colors button invokes a dialog, allowing an end-user to choose the required color using the Color Picker interface. After an end-user has selected a custom color, this color is added to RecentColors. When the RecentColors collection reaches the maximum (ColorEdit.ColumnCount), adding an additional color will cause the oldest color to be removed.

See Also