using UWP.Markup;
var value = new ContentPresenter()
.Foreground(Colors.Red)
.ContentAlignment(HorizontalAlignment.Center, VerticalAlignment.Center)
.Padding(10)
.CornerRadius(10)
.BorderThickness(2)
.BorderBrush(Colors.Red)
.Background(Colors.White)
.Content("ContentPresenter");
// doc ⬇️
Custom Methods
Sets the Brush
to apply to the text content handled by the ContentPresenter.The default is a null brush
from a pure code perspective, but system style defaults set this to Black (for Light theme) or White (for Dark theme).
Sets The horizontal
and vertical
alignment of the content. The default is HorizontalAlignment.Left and VerticalAlignment.Top
.
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.
Sets the Brush
that fills the background (inner area) of the border. The default is null, (a null brush) which is evaluated as Transparent for rendering.
WinUI Methods