Border::Background Property

 

Gets or sets the Brush that fills the area between the bounds of a Border.

Namespace:   System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)

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

Property Value

Type: System.Windows.Media::Brush^

The Brush that draws the background. This property has no default value.

The following example shows how to set the value of the Background property by using Extensible Application Markup Language (XAML) and code.

No code example is currently available or this language may not be supported.
<Border BorderBrush="SlateBlue" BorderThickness="5,10,15,20" Background="AliceBlue" Padding="5" CornerRadius="15">

.NET Framework
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show: