Window.OnManipulationBoundaryFeedback Method
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.
Called when the ManipulationBoundaryFeedback event occurs.
protected:
override void OnManipulationBoundaryFeedback(System::Windows::Input::ManipulationBoundaryFeedbackEventArgs ^ e);
protected override void OnManipulationBoundaryFeedback (System.Windows.Input.ManipulationBoundaryFeedbackEventArgs e);
override this.OnManipulationBoundaryFeedback : System.Windows.Input.ManipulationBoundaryFeedbackEventArgs -> unit
Protected Overrides Sub OnManipulationBoundaryFeedback (e As ManipulationBoundaryFeedbackEventArgs)
Parameters
The data for the event.
Remarks
This implementation does not change the handled state (the Handled property) of the ManipulationBoundaryFeedback event data.
Notes to Inheritors
If you override OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs), always call the base implementation in your OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs) implementation. Failure to call the base implementation prevents base classes from handling the event, which might change the run-time behavior of the final class. You can call the base implementation either before or after your special handling, depending on your requirements.