maui-devexpress-dot-maui-dot-editors-dot-dxsliderthumbappearance-701ab139.md
Gets or sets the margins to the left and right sides of the thumb. This is a bindable property.
Namespace : DevExpress.Maui.Editors
Assembly : DevExpress.Maui.Editors.dll
NuGet Package : DevExpress.Maui.Editors
public double SideMargin { get; set; }
| Type | Description |
|---|---|
| Double |
Specifies the thumb margins.
|
This example shows how to specify the side margins of the thumb in DXSlider and DXRangeSlider controls:
<dxe:DXSlider Value="25">
<dxe:DXSlider.ThumbAppearance>
<dxe:DXSliderThumbAppearance
SideMargin="16" />
</dxe:DXSlider.ThumbAppearance>
</dxe:DXSlider>
<dxe:DXRangeSlider StartValue="15" EndValue="85">
<dxe:DXRangeSlider.StartThumbAppearance>
<dxe:DXSliderThumbAppearance
SideMargin="16" />
</dxe:DXRangeSlider.StartThumbAppearance>
<dxe:DXRangeSlider.EndThumbAppearance>
<dxe:DXSliderThumbAppearance
SideMargin="16" />
</dxe:DXRangeSlider.EndThumbAppearance>
</dxe:DXRangeSlider>
See Also