.NET MAUI Slider Tooltips
The Slider for .NET MAUI can display a tooltip to indicate the currently selected value to the end user. The tooltip displays as soon as the user starts dragging the thumb.
The Slider tooltip provides the following customization options:
-
TooltipStringFormat
(string
)—Defines a custom string format for the tooltip. -
TooltipContentTemplate
(DataTemplate
)—Sets a template or template selector that defines the content of the tooltip. -
TooltipControlTemplate
(ControlTemplate
)—Sets the control template of the tooltip that defines its overall appearance.
TooltipContentTemplate Example
Check below a quick example with setting the TooltipStringFormat
and TooltipContentTemplate
properties:
1. Add the custom DataTemplate
to your page resources:
2. Apply it to the Slider's TooltipContentTemplate
:
Check the result below:
TooltipControlTemplate Example
Check below a quick example with setting the TooltipControlTemplate
property:
1. Add the custom ControlTemplate
to your page resources:
2. Apply it to the Slider's TooltipControlTemplate
:
Check the result below: