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

ThemedWindow.HeaderForeground Property

Gets or sets the brush that is used to paint a window title in the ThemedWindow‘s header area. This is a dependency property.

Namespace: DevExpress.Xpf.Core

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

Declaration

public Brush HeaderForeground { get; set; }

Property Value

Type Description
Brush

A Brush object that paints a window title in the ThemedWindow‘s header.

Remarks

The following code sample sets the HeaderForeground to Red:

WPF ThemedWindow - HeaderForeground Property

<dx:ThemedWindow 
  ...
  xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
  Title="ApplicationHeader"
  HeaderForeground="Red">
  ...
</dx:ThemedWindow>
See Also