maui-404789-slider-and-rangeslider-index.md
The DevExpress Mobile UI for .NET MAUI suite ships with slider controls that allow users to select a numeric value or a range of numeric values.
The DevExpress DXSlider for .NET MAUI allows users to select a numeric value.
Before you proceed, read the following topic: Get Started with DevExpress Controls for .NET Multi-platform App UI (.NET MAUI).
The following example adds a Slider to a page:
<ContentPage ...
xmlns:dxe="clr-namespace:DevExpress.Maui.Editors;assembly=DevExpress.Maui.Editors">
<dxe:DXSlider
Value="25"
TickmarkStep="25"
MinValue="1"
MaxValue="300" />
</ContentPage>
The DevExpress DXRangeSlider for .NET MAUI allows users to select a range of numeric values.
Before you proceed, read the following topic: Get Started with DevExpress Controls for .NET Multi-platform App UI (.NET MAUI).
The following example adds a Range Slider to a page:
<ContentPage ...
xmlns:dxe="clr-namespace:DevExpress.Maui.Editors;assembly=DevExpress.Maui.Editors">
<dxe:DXRangeSlider
StartValue="15"
EndValue="85"
TickmarkStep="25"
MinValue="5"
MaxValue="255" />
</ContentPage>