ScrollBar.DeferScrollToVerticalOffsetCommand 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.
The command that notifies the ScrollViewer that the user is dragging the Thumb of the vertical ScrollBar to the value that is provided in Parameter.
public: static initonly System::Windows::Input::RoutedCommand ^ DeferScrollToVerticalOffsetCommand;
public static readonly System.Windows.Input.RoutedCommand DeferScrollToVerticalOffsetCommand;
staticval mutable DeferScrollToVerticalOffsetCommand : System.Windows.Input.RoutedCommand
Public Shared ReadOnly DeferScrollToVerticalOffsetCommand As RoutedCommand
Field Value
Remarks
When the user drags the thumb of a ScrollBar, the ScrollBar calls CanExecute for the DeferScrollToVerticalOffsetCommand. If CanExecute returns true
, the ScrollBar executes that command. If CanExecute returns false
, the ScrollBar executes the ScrollToVerticalOffsetCommand.
The ScrollViewer uses this command to enable deferred scrolling. When ScrollViewer.IsDeferredScrollingEnabled is true
and a user drags the Thumb of the ScrollBar, the content of the ScrollViewer does not change until the user releases the Thumb. If deferred scrolling is enabled, the ScrollBar executes the DeferScrollToVerticalOffsetCommand for a vertical ScrollBar when the user drags the Thumb.