This documentation is archived and is not being maintained.
Control.BorderThickness Property
Visual Studio 2010
Gets or sets the border thickness of a control.
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 SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: