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>
Private Sub ChangeBorderThickness(ByVal Sender As Object, ByVal e As RoutedEventArgs) If (btn9.BorderThickness.Left = 5.0) Then 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" End If End Sub
.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: