1 instantiation of ManipulationBoundaryFeedbackEventArgs
PresentationCore (1)
System\Windows\Input\ManipulationLogic.cs (1)
344
PushEvent(new
ManipulationBoundaryFeedbackEventArgs
(_manipulationDevice, LastTimestamp, _currentContainer, unusedManipulation));
9 references to ManipulationBoundaryFeedbackEventArgs
PresentationCore (8)
System\Windows\Input\Manipulation.cs (1)
27
internal static readonly RoutedEvent ManipulationBoundaryFeedbackEvent = EventManager.RegisterRoutedEvent("ManipulationBoundaryFeedback", RoutingStrategy.Bubble, typeof(EventHandler<
ManipulationBoundaryFeedbackEventArgs
>), typeof(ManipulationDevice));
System\Windows\Input\ManipulationBoundaryFeedbackEventArgs.cs (1)
49
((EventHandler<
ManipulationBoundaryFeedbackEventArgs
>)genericHandler)(genericTarget, this);
System\Windows\Input\ManipulationDevice.cs (2)
442
ManipulationBoundaryFeedbackEventArgs
boundaryEventArgs = inputEventArgs as
ManipulationBoundaryFeedbackEventArgs
;
System\Windows\UIElement.cs (4)
103
EventManager.RegisterClassHandler(typeof(UIElement), ManipulationBoundaryFeedbackEvent, new EventHandler<
ManipulationBoundaryFeedbackEventArgs
>(OnManipulationBoundaryFeedbackThunk));
4488
public event EventHandler<
ManipulationBoundaryFeedbackEventArgs
> ManipulationBoundaryFeedback
4494
private static void OnManipulationBoundaryFeedbackThunk(object sender,
ManipulationBoundaryFeedbackEventArgs
e)
4502
protected virtual void OnManipulationBoundaryFeedback(
ManipulationBoundaryFeedbackEventArgs
e) { }
PresentationFramework (1)
System\Windows\Window.cs (1)
7050
protected override void OnManipulationBoundaryFeedback(
ManipulationBoundaryFeedbackEventArgs
e)