ScrollBar.PageUpCommand 字段

定义

在垂直方向上滚动 ScrollBarTrack的命令。

public: static initonly System::Windows::Input::RoutedCommand ^ PageUpCommand;
public static readonly System.Windows.Input.RoutedCommand PageUpCommand;
 staticval mutable PageUpCommand : System.Windows.Input.RoutedCommand
Public Shared ReadOnly PageUpCommand As RoutedCommand 

字段值

示例

以下示例演示如何在自定义 ScrollBar 样式模板中指定 PageUpCommand

<Style x:Key="ScrollBar_UpTrack" 
       BasedOn="{StaticResource ScrollBar_TrackRepeater}" 
       TargetType="{x:Type RepeatButton}">
  <Setter Property="Command" Value="ScrollBar.PageUpCommand" />
</Style>

注解

此命令通过 LargeChange 属性的值减少 ScrollBarTrackValue

当用户按下 PAGE UP 键时,将发生此命令。

ScrollViewer 控件中实现 ScrollBar 时,ScrollViewer 将执行此命令。

XAML 文本用法

ScrollBar.PageUpCommandscrollBar.PageUpCommand属性 对象

适用于

另请参阅