ScrollBar.PageRightCommand Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public: static initonly System::Windows::Input::RoutedCommand ^ PageRightCommand;
public static readonly System.Windows.Input.RoutedCommand PageRightCommand;
staticval mutable PageRightCommand : System.Windows.Input.RoutedCommand
Public Shared ReadOnly PageRightCommand As RoutedCommand
Field Value
Examples
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>
Remarks
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.
XAML Text Usage
<
object property="
ScrollBar.PageRightCommand"/>