Control.Background property

Expand
This topic has not yet been rated - Rate this topic

Control.Background property

[This documentation is preliminary and is subject to change.]

Gets or sets a brush that provides the background of the control.

Syntax


public Brush Background { get; set; }


<control>
  <control.Background>
    singleBrush
  </control.Background>
</control>


<control Background="colorString"/>

XAML Values

singleBrush

Within opening and closing property elements for object.Background, exactly one object element for an object that derives from Brush. The object element is typically one of these classes: LinearGradientBrush, ImageBrush, SolidColorBrush.

colorString

The Color for a SolidColorBrush, expressed as an attribute string. This can be a named color, an RGB value, or an ScRGB value. RGB or ScRGB may also specify alpha information. See Color.

Property value

Type: Brush

The brush that provides the background of the control. The default is null.

Requirements

Minimum supported client

Windows 8 Release Preview

Minimum supported server

Windows Server 2012

Namespace

Windows.UI.Xaml.Controls
Windows::UI::Xaml::Controls [C++]

Metadata

Windows.winmd

See also

Control

 

 

Build date: 5/22/2012

Did you find this helpful?
(1500 characters remaining)
Community Additions ADD