Layout.Padding Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the inner padding of the Layout.
public Xamarin.Forms.Thickness Padding { get; set; }
member this.Padding : Xamarin.Forms.Thickness with get, set
Property Value
The Thickness values for the layout. The default value is a Thickness with all values set to 0.
Remarks
The padding is the space between the bounds of a layout and the bounding region into which its children should be arranged into.
The following example shows setting the padding of a Layout to inset its children.
var stackLayout = new StackLayout {
Padding = new Thickness (10, 10, 10, 20),
Children = {
new Label {Text = "Hello"},
new Label {Text = "World"}
}
}