This documentation is archived and is not being maintained.
Control.BorderThickness Property
Visual Studio 2008
Gets or sets the border thickness of a control. This is a dependency property.
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"; } }
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: