Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public string ValueToolTipStringFormat { get; set; }

#Property Value

Type Description
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

<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