Control.BorderThickness Property
.NET Framework (current version)
Gets or sets the border thickness of a control.
Assembly: PresentationFramework (in PresentationFramework.dll)
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"; } }
.NET Framework
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: