Border.Padding Property

Definition

Gets or sets a Thickness value that describes the amount of space between a Border and its child element.

C#
public System.Windows.Thickness Padding { get; set; }

Property Value

The Thickness that describes the amount of space between a Border and its single child element. This property has no default value.

Examples

The following example shows how to set the value of this property.

C#
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);
XAML
<Border BorderBrush="SlateBlue" BorderThickness="5,10,15,20" Background="AliceBlue" Padding="5" CornerRadius="15">

Remarks

Dependency Property Information

Item Value
Identifier field PaddingProperty
Metadata properties set to true AffectsMeasure, AffectsRender

Applies to

Producto Versiones
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9