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

DashboardControlBase.CardItemStyleSelector Property

Gets or sets an object that returns a style based on custom logic. This is a dependency property.

Namespace: DevExpress.DashboardWpf

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

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

Declaration

public StyleSelector CardItemStyleSelector { get; set; }

Property Value

Type Description
StyleSelector

An object that applies styles based on custom logic.

Remarks

Use the CardItemStyleSelector property to apply a style to the CardItemStyle property based on custom logic.

To accomplish this, take the following steps:

  • Implement a class that descends from the StyleSelector class.
  • Implement the SelectStyle method that returns the style based on custom logic.
  • Instantiate the class and assign it to the CardItemStyleSelector property.

The style specified by the CardItemStyleSelector property has priority over the style specified by the CardItemStyle property. If the CardItemStyleSelector property is null, the CardItemStyle property is in effect.

See Also