wpf-devexpress-dot-xpf-dot-editors-dot-trackbaredit-39b26585.md
Gets or sets a value that specifies how the track bar ticks are displayed. This is a dependency property.
Namespace : DevExpress.Xpf.Editors
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public TrackBarEditTickItemDisplayMode TickItemDisplayMode { get; set; }
Public Property TickItemDisplayMode As TrackBarEditTickItemDisplayMode
| Type | Description |
|---|---|
| TrackBarEditTickItemDisplayMode |
A TrackBarEditTickItemDisplayMode enumeration value.
|
Available values:
| Name | Description |
|---|---|
| Tick |
Track bar displays tick marks.
| | Text |
Track bar displays text labels.
| | TickAndText |
Track bar displays text labels with tick marks.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the TickItemDisplayMode property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
wpf-data-grid-create-custom-drop-down-filter/CS/DXGrid_CustomFilterPopup/Window1.xaml#L19
Width="200" Margin="10"
TickFrequency="10" TickItemDisplayMode="TickAndText" TickPlacement="BottomRight"
EditValue="{Binding Path=CustomColumnFilter, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource IntToCriteriaConverter}}"/>
See Also