Back to Devexpress

TrackBarEdit.ThumbStyle Property

wpf-devexpress-dot-xpf-dot-editors-dot-trackbaredit-38abcc8f.md

latest4.4 KB
Original Source

TrackBarEdit.ThumbStyle Property

Gets or sets the TrackBarEdit’s thumb style. This is a dependency property.

Namespace : DevExpress.Xpf.Editors

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

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public Style ThumbStyle { get; set; }
vb
Public Property ThumbStyle As Style

Property Value

TypeDescription
Style

The TrackBarEdit’s track bar style.

|

Remarks

The following code sample specifies the ThumbStyle , FarTrackStyle, NearTrackStyle, and TrackHeight properties.

xaml
<Window ...
    xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">
    <StackPanel>
        <StackPanel.Resources>
            <Style x:Key="trackBarEditThumbStyle" TargetType="Thumb">
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate>
                            <Ellipse Width="20" Height="20" Fill="Blue" />
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>
            <Style x:Key="nearTrackStyle" TargetType="RepeatButton">
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate>
                            <Border Background="#FF6200EE" Height="8"
                                    VerticalAlignment="Center" Margin="0,0,-5,0"
                                    CornerRadius="4" />
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>
            <Style x:Key="farTrackStyle" TargetType="RepeatButton">
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate>
                            <Border Background="Red" Height="8" VerticalAlignment="Center"
                                    Margin="-5,0,0,0" CornerRadius="4" />
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>
        </StackPanel.Resources>
        <dxe:TrackBarEdit Margin="5" Minimum="0" Maximum="100" Value="50"
                          Background="#FFDABEFC" BorderBrush="#FFDABEFC"
                          dxe:EditorAppearanceProperties.FocusedBorderBrush="#FFDABEFC"
                          CornerRadius="4" TrackHeight="8" TickPlacement="None"
                          NearTrackStyle="{StaticResource nearTrackStyle}"
                          FarTrackStyle="{StaticResource farTrackStyle}"
                          ThumbStyle="{StaticResource trackBarEditThumbStyle}" />
    </StackPanel>
</Window>

Note

The property is supported in the following DevExpress themes:

Theme FamilyThemes
Windows 11Dark, Light
Windows 10Dark, Light
Office 2019Black, Colorful, Dark Gray, White, HighContrast
Visual Studio 2019Blue, Dark, Light
Office 2016 SEBlack, Colorful, Dark Gray, White
Visual Studio 2017Blue, Dark, Light

See Also

TrackBarEdit Class

TrackBarEdit Members

DevExpress.Xpf.Editors Namespace