Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BottomSheet.Padding Property

Gets or sets the padding between Bottom Sheet edges and content. This is a bindable property.

Namespace: DevExpress.Maui.Controls

Assembly: DevExpress.Maui.Controls.dll

NuGet Package: DevExpress.Maui.Controls

#Declaration

C#
public Thickness Padding { get; set; }

#Property Value

Type Description
Thickness

Specifies padding.

#Remarks

The following markup shows how to specify the padding value:

<!-- Applies the same value to all paddings: -->
<dxc:BottomSheet Padding="30" .../>

<!-- Specifies horizontal and vertical padding values: -->
<dxc:BottomSheet Padding="30,10" .../>

<!-- Specifies left, top, right, and bottom padding values: -->
<dxc:BottomSheet Padding="30,20,30,10" .../>
See Also