Skip to content

Attributes

NameUse
PlacementPrompt Element Display Position
VisibilityVisibility
StringFormatStringFormat

Use Cases

Placement Prompt element display position

This attribute is used to set the display position of the prompt element. Currently supports BottomRight and TopLeft (default)

xml
<hc:RangeSlider Width="400" 
                    hc:TipElement.Visibility="Visible" 
                    TickPlacement="BottomRight" 
                    IsSnapToTickEnabled="True" 
                    Maximum="100" ValueEnd="60" 
                    TickFrequency="10" 
                    Margin="0,32,0,0"/>
<hc:RangeSlider Width="400" 
                    hc:TipElement.Visibility="Visible"
                    hc:TipElement.Placement="BottomRight"
                    TickPlacement="BottomRight" 
                    IsSnapToTickEnabled="True" 
                    Maximum="100" ValueEnd="60" 
                    TickFrequency="10" 
                    Margin="0,32,0,0"/>

<hc:RangeSlider Width="400" 
                    hc:TipElement.Visibility="Visible" 
                    hc:TipElement.Placement="Bottom" 
                    hc:TipElement.StringFormat="#0.00" 
                    ValueEnd="5" 
                    TickPlacement="Both" 
                    Margin="0,32,0,0"/>

effect

TipElement.Default

TipElement.TopLeft

Released under the MIT License.