Class RangeSliderTooltipContentTemplateSelector
A template selector that can be used for the start thumb, end thumb, and range track tooltip templates for the RadRangeSlider.
Inheritance
Namespace: Telerik.Maui.Controls.RangeSlider
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RangeSliderTooltipContentTemplateSelector : DataTemplateSelector
Constructors
RangeSliderTooltipContentTemplateSelector()
Declaration
public RangeSliderTooltipContentTemplateSelector()
Properties
EndThumbTooltipTemplate
Gets or sets the template that defines the appearance of the tooltip that is shown for the end thumb of the RadRangeSlider.
Declaration
public DataTemplate EndThumbTooltipTemplate { get; set; }
Property Value
Microsoft.Maui.Controls.DataTemplate
|
RangeTrackTooltipTemplate
Gets or sets the template that defines the appearance of the tooltip that is shown for the range track (the part between the start and end thumbs).
Declaration
public DataTemplate RangeTrackTooltipTemplate { get; set; }
Property Value
Microsoft.Maui.Controls.DataTemplate
|
StartThumbTooltipTemplate
Gets or sets the template that defines the appearance of the tooltip that is shown for the start thumb of the RadRangeSlider.
Declaration
public DataTemplate StartThumbTooltipTemplate { get; set; }
Property Value
Microsoft.Maui.Controls.DataTemplate
|
Methods
OnSelectTemplate(Object, BindableObject)
Selects a template based on the information provided in the arguments.
Declaration
protected override DataTemplate OnSelectTemplate(object item, BindableObject container)
Parameters
System.Object
item
|
Microsoft.Maui.Controls.BindableObject
container
|
Returns
Microsoft.Maui.Controls.DataTemplate
|