Control.BorderThickness Property
Definition
Gets or sets the border thickness of a control.
Equivalent WinUI property: Microsoft.UI.Xaml.Controls.Control.BorderThickness.
public:
property Thickness BorderThickness { Thickness get(); void set(Thickness value); };
Thickness BorderThickness();
void BorderThickness(Thickness value);
public Thickness BorderThickness { get; set; }
var thickness = control.borderThickness;
control.borderThickness = thickness;
Public Property BorderThickness As Thickness
<control BorderThickness="uniform"/>
- or -
<control BorderThickness="left&right,top&bottom"/>
- or -
<control BorderThickness="left,top,right,bottom"/>
Property Value
The border thickness of a control, as a Thickness value.
Remarks
Each control might apply this property differently based on its visual template. This property only affects a control whose template uses the BorderThickness property as a parameter. On other controls, this property has no effect. For more info about visual templates, see the Template property.