SettingsFlyout.HeaderBackground Property

Definition

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

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

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

Property Value

The brush that provides the background 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 (SettingsFlyoutHeaderBackgroundThemeBrush) for this in a runtime instance of a SettingsFlyout control.

Applies to

See also