Back to Devexpress

TrackBarEdit.ValueToolTipStringFormat Property

wpf-devexpress-dot-xpf-dot-editors-dot-trackbaredit-311249f8.md

latest1.8 KB
Original Source

TrackBarEdit.ValueToolTipStringFormat Property

Gets or sets the composite string that specifies how to format the value tooltips. This is a dependency property.

Namespace : DevExpress.Xpf.Editors

Assembly : DevExpress.Xpf.Core.v25.2.dll

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public string ValueToolTipStringFormat { get; set; }
vb
Public Property ValueToolTipStringFormat As String

Property Value

TypeDescription
String

The composite string that specifies how to format the value tooltips texts.

|

Remarks

The TickItemStringFormat format string is applied to the editor’s value tooltips. Set the ValueToolTipPlacement property to BottomRight or TopLeft to display value tooltips within the tick items.

Example

xaml
<Window ...
        xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">

...
<dxe:TrackBarEdit
    TickFrequency="10"
    TickItemDisplayMode="TickAndText"
    TickPlacement="BottomRight"
    ValueToolTipPlacement="TopLeft"
    ValueToolTipStringFormat="c0" />

See Also

TrackBarEdit Class

TrackBarEdit Members

DevExpress.Xpf.Editors Namespace