This documentation is archived and is not being maintained.
ScrollBar.PageRightCommand Field
Visual Studio 2010
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
This command increases the Value of the Track in the ScrollBar by the value of the LargeChange property.
This command occurs when the user presses the page button that is to the right of the Thumb. The following illustration shows the page buttons in a ScrollBar.
When you implement a ScrollBar as part of a ScrollViewer control, the ScrollViewer executes this command.
The following example shows how to specify the PageRightCommand in a custom ScrollBar style template.
<Style x:Key="ScrollBar_RightTrack" BasedOn="{StaticResource ScrollBar_TrackRepeater}" TargetType="{x:Type RepeatButton}"> <Setter Property="Command" Value="ScrollBar.PageRightCommand" /> </Style>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: