Track.DecreaseRepeatButton Property

Definition

Gets the RepeatButton that decreases the Value property of the Track.

public:
 property System::Windows::Controls::Primitives::RepeatButton ^ DecreaseRepeatButton { System::Windows::Controls::Primitives::RepeatButton ^ get(); void set(System::Windows::Controls::Primitives::RepeatButton ^ value); };
public System.Windows.Controls.Primitives.RepeatButton DecreaseRepeatButton { get; set; }
member this.DecreaseRepeatButton : System.Windows.Controls.Primitives.RepeatButton with get, set
Public Property DecreaseRepeatButton As RepeatButton

Property Value

The RepeatButton that reduces 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. For the complete sample, see the ScrollBar Styles and Templates.

<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

See also