Track.IncreaseRepeatButton Property

Definition

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

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

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.

<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