Border.BorderBrush Property

Definition

Gets or sets the Brush that draws the outer border color.

public System.Windows.Media.Brush BorderBrush { get; set; }

Property Value

The Brush that draws the outer border color. This property has no default value.

Examples

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

myBorder1 = new Border();
myBorder1.BorderBrush = Brushes.SlateBlue;
myBorder1.BorderThickness = new Thickness(5, 10, 15, 20);
myBorder1.Background = Brushes.AliceBlue;
myBorder1.Padding = new Thickness(5);
myBorder1.CornerRadius = new CornerRadius(15);
<Border BorderBrush="SlateBlue" BorderThickness="5,10,15,20" Background="AliceBlue" Padding="5" CornerRadius="15">

Remarks

Dependency Property Information

Item Value
Identifier field BorderBrushProperty
Metadata properties set to true AffectsRender, SubPropertiesDoNotAffectRender

Applies to