ScrollBar.LineLeftCommand 字段

定义

ScrollBar 滚动到其 Track的水平方向的少量的命令。

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

字段值

示例

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

<RepeatButton Grid.Column="0" 
              Style="{DynamicResource Scrollbar_LineButton}" 									
              Command="ScrollBar.LineLeftCommand" Content=" <" />

注解

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

当用户按下左侧 RepeatButton时,将发生此命令。

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

XAML 文本用法

scrollBar.LineLeftCommand对象属性

适用于

另请参阅