Skip to main content

ProgressBarEdit.AdditionalForeground Property

Gets or sets the color of the content on the left side of the ProgressBarEdit. This is a dependency property.

Namespace: DevExpress.Xpf.Editors

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

NuGet Package: DevExpress.Wpf.Core

Declaration

public SolidColorBrush AdditionalForeground { get; set; }

Property Value

Type Description
SolidColorBrush

A SolidColorBrush object.

Remarks

Use the Foreground property to specify the color of the content on the right side of the ProgressBarEdit.

WPF ProgressBarEdit - AdditionalForeground Foreground

<dxe:ProgressBarEdit Value="50" IsPercent="True" ContentDisplayMode="Value"
                     DisplayFormatString="Progress: {0:p}"
                     AdditionalForeground="Cyan" Foreground="Green"/>

The ProgressBrush property allows you to specify the progress color.

The AdditionalForeground property has no effect if DevExpress Windows 11 Themes are applied to the ProgressBarEdit.

See Also