Track.IncreaseRepeatButton Property

Definition

Gets the RepeatButton that increases the Value property of the Track class.

C#
public System.Windows.Controls.Primitives.RepeatButton IncreaseRepeatButton { get; set; }

Property Value

The RepeatButton that increases the Value of the Track control when the RepeatButton is pressed. The default is a RepeatButton control that has default settings.

Examples

The following example shows how the DecreaseRepeatButton and IncreaseRepeatButton styles are defined inside the ScrollBar control template when the Orientation property is Vertical.

XAML
<Track Grid.Row="1" Name="PART_Track"
       IsDirectionReversed="true">
  <Track.DecreaseRepeatButton>
    <RepeatButton Style="{DynamicResource ScrollBar_UpTrack}"/>
  </Track.DecreaseRepeatButton>
  <Track.Thumb>
    <Thumb Style="{DynamicResource ScrollBar_HorizontalThumb}"/>
  </Track.Thumb>
  <Track.IncreaseRepeatButton>
    <RepeatButton Style="{DynamicResource ScrollBar_DownTrack}"/>
  </Track.IncreaseRepeatButton>
</Track>

Remarks

When a Track control is in a Slider control, the Delay properties of the RepeatButton controls of the Track bind to the Delay property of the Slider control.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also