using UWP.Markup;
var value = new StackPanel()
.Padding(10)
.CornerRadius(10)
.BorderThickness(2)
.BorderBrush(Colors.Red);
// doc ⬇️
Custom Methods
Sets the distance between the border and its child object. The default value is 0
.
Sets the distance between the border and its child object. The default value is left: 0, top: 0, right: 0, bottom: 0
.
Sets the distance between the border and its child object. The default value is horizontal: 0, vertical: 0
.
Sets the radius
for the corners of the border. The default is 0
.
Sets the radius
for the corners of the border. The default is topLeftRight: 0, bottomRightLeft: 0
.
Sets the radius
for the corners of the border. The default is top-left: 0, top-right: 0, bottom-right: 0, bottom-left: 0
.
Sets the thickness
of the border. The default is 0
.
Sets the thickness
of the border. The default leftRight and topBottom is 0
.
Sets the thickness
of the border. The default is left: 0, top: 0, right: 0, bottom: 0.
Sets the Brush
that is applied to the edge area of the Border. The default is null, (a null brush) which is evaluated as Transparent for rendering.
WinUI Methods
Sets the dimension by which child elements are stacked. The default is Vertical
.
Sets a value that indicates whether the generated snap points used for panning in the StackPanel
are equidistant from each other.
Sets the distance between the border
and its child object.
Sets the radius
for the corners of the panel's border.
Sets the border thickness
of the panel
.
Sets a brush
that describes the border fill of the panel
. The default is null
, (a null brush) which is evaluated as Transparent
for rendering.
Sets a uniform distance
(in pixels) between stacked items. It is applied in the direction
of the StackPanel's Orientation
.
Sets a value that indicates how far the background
extends in relation to this element's border. The default is InnerBorderEdge
.