1 instantiation of ManipulationBoundaryFeedbackEventArgs
PresentationCore (1)
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (1)
383
PushEvent(new
ManipulationBoundaryFeedbackEventArgs
(_manipulationDevice, LastTimestamp, _currentContainer, unusedManipulation));
9 references to ManipulationBoundaryFeedbackEventArgs
PresentationCore (8)
Core\CSharp\System\Windows\Input\Manipulation.cs (1)
26
internal static readonly RoutedEvent ManipulationBoundaryFeedbackEvent = EventManager.RegisterRoutedEvent("ManipulationBoundaryFeedback", RoutingStrategy.Bubble, typeof(EventHandler<
ManipulationBoundaryFeedbackEventArgs
>), typeof(ManipulationDevice));
Core\CSharp\System\Windows\Input\ManipulationBoundaryFeedbackEventArgs.cs (1)
54
((EventHandler<
ManipulationBoundaryFeedbackEventArgs
>)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\Input\ManipulationDevice.cs (2)
493
ManipulationBoundaryFeedbackEventArgs
boundaryEventArgs = inputEventArgs as
ManipulationBoundaryFeedbackEventArgs
;
Core\CSharp\System\Windows\UIElement.cs (4)
110
EventManager.RegisterClassHandler(typeof(UIElement), ManipulationBoundaryFeedbackEvent, new EventHandler<
ManipulationBoundaryFeedbackEventArgs
>(OnManipulationBoundaryFeedbackThunk));
4531
public event EventHandler<
ManipulationBoundaryFeedbackEventArgs
> ManipulationBoundaryFeedback
4537
private static void OnManipulationBoundaryFeedbackThunk(object sender,
ManipulationBoundaryFeedbackEventArgs
e)
4545
protected virtual void OnManipulationBoundaryFeedback(
ManipulationBoundaryFeedbackEventArgs
e) { }
PresentationFramework (1)
src\Framework\System\Windows\Window.cs (1)
7374
protected override void OnManipulationBoundaryFeedback(
ManipulationBoundaryFeedbackEventArgs
e)