The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Thickness.Top Property
.NET Framework (current version)
Gets or sets the width, in pixels, of the upper side of the bounding rectangle.
Assembly: PresentationFramework (in PresentationFramework.dll)
The following example shows how to set the value of the Top property by using Extensible Application Markup Language (XAML) and code.
myBorder2 = new Border(); myBorder2.BorderBrush = Brushes.SteelBlue; myBorder2.Width = 400; myBorder2.Height = 400; myThickness = new Thickness(); myThickness.Bottom = 5; myThickness.Left = 10; myThickness.Right = 15; myThickness.Top = 20; myBorder2.BorderThickness = myThickness;
<Border BorderBrush="SteelBlue" Width="400" Height="400" Canvas.Left="100" Canvas.Top="100"> <Border.BorderThickness> 10,20,15,5 </Border.BorderThickness> </Border>
.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: