This topic has not yet been rated - Rate this topic

Track.IncreaseRepeatButton Property

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

Namespace:  System.Windows.Controls.Primitives
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
public RepeatButton IncreaseRepeatButton { get; set; }
<object>
  <object.IncreaseRepeatButton>
    <RepeatButton .../>
  </object.IncreaseRepeatButton>
</object>

Property Value

Type: System.Windows.Controls.Primitives.RepeatButton
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.

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.

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>

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.