SettingsFlyout.HeaderForeground Property

Definition

Gets or sets the Brush that fills the foreground of the SettingsFlyout header.

public:
 property Brush ^ HeaderForeground { Brush ^ get(); void set(Brush ^ value); };
Brush HeaderForeground();

void HeaderForeground(Brush value);
public Brush HeaderForeground { get; set; }
var brush = settingsFlyout.headerForeground;
settingsFlyout.headerForeground = brush;
Public Property HeaderForeground As Brush
<SettingsFlyout HeaderForeground="{StaticResource resourceName}"/>
- or -
<SettingsFlyout HeaderForeground="colorString"/>
- or -
<SettingsFlyout>
  <SettingsFlyout.HeaderForegroundsingleBrush</SettingsFlyout.HeaderForeground>
</SettingsFlyout>

Property Value

The brush that provides the foreground of the SettingsFlyout header. The default is a null brush from a pure code perspective, but the default control template for SettingsFlyout applies a theme resource brush (SettingsFlyoutHeaderForegroundThemeBrush) for this in a runtime instance of a SettingsFlyout control.

Applies to

See also