ScrollBar.PageLeftCommand 字段

定义

Track的水平方向上,将 ScrollBar 滚动 ScrollBar 的命令。

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

字段值

示例

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

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

注解

此命令将 ScrollBarTrackValue 减少 LargeChange 属性的值。

当用户按下位于 Thumb左侧的页面按钮时,将发生此命令。 下图显示了 ScrollBar中的页面按钮。

ScrollBar 的不同部分

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

XAML 文本用法

scrollBar.PageLeftCommandscrollBar.PageLeftCommand 对象属性

适用于

另请参阅