Control.BorderThickness Property
.NET Framework 4.6 and 4.5
Gets or sets the border thickness of a control.
Namespace: System.Windows.Controls
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
<object> <object.BorderThickness> <Thickness .../> </object.BorderThickness> </object>
<object BorderThickness="Thickness" .../>
Property Value
Type: System.Windows.ThicknessA thickness value; the default is a thickness of 0 on all four sides.
The following example shows how to set the border thickness property of a control.
<Button Name="btn9" BorderThickness="5.0" Click="ChangeBorderThickness" TabIndex="2"> BorderThickness </Button>
void ChangeBorderThickness(object sender, RoutedEventArgs e) { if (btn9.BorderThickness.Left == 5.0) { btn9.BorderThickness = new Thickness(2.0); btn9.Content = "Control BorderThickness changes from 5 to 2."; } else { btn9.BorderThickness = new Thickness(5.0); btn9.Content = "BorderThickness"; } }
Show: