ScrollBar.PageLeftCommand 欄位
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
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>
備註
此命令會根據 LargeChange 屬性的值,減少 ScrollBar 中 Track 的 Value。
當使用者按下位於 Thumb左邊的頁面按鈕時,就會發生此命令。 下圖顯示 ScrollBar中的頁面按鈕。
當您實作 ScrollBar 做為 ScrollViewer 控件的一部分時,ScrollViewer 會執行此命令。