1 instantiation of ManipulationBoundaryFeedbackEventArgs
PresentationCore (1)
System\Windows\Input\ManipulationLogic.cs (1)
338PushEvent(new ManipulationBoundaryFeedbackEventArgs(_manipulationDevice, LastTimestamp, _currentContainer, unusedManipulation));
9 references to ManipulationBoundaryFeedbackEventArgs
PresentationCore (8)
System\Windows\Input\Manipulation.cs (1)
23internal static readonly RoutedEvent ManipulationBoundaryFeedbackEvent = EventManager.RegisterRoutedEvent("ManipulationBoundaryFeedback", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationBoundaryFeedbackEventArgs>), typeof(ManipulationDevice));
System\Windows\Input\ManipulationBoundaryFeedbackEventArgs.cs (1)
41((EventHandler<ManipulationBoundaryFeedbackEventArgs>)genericHandler)(genericTarget, this);
System\Windows\Input\ManipulationDevice.cs (2)
426ManipulationBoundaryFeedbackEventArgs boundaryEventArgs = inputEventArgs as ManipulationBoundaryFeedbackEventArgs;
System\Windows\UIElement.cs (4)
93EventManager.RegisterClassHandler(typeof(UIElement), ManipulationBoundaryFeedbackEvent, new EventHandler<ManipulationBoundaryFeedbackEventArgs>(OnManipulationBoundaryFeedbackThunk)); 4467public event EventHandler<ManipulationBoundaryFeedbackEventArgs> ManipulationBoundaryFeedback 4473private static void OnManipulationBoundaryFeedbackThunk(object sender, ManipulationBoundaryFeedbackEventArgs e) 4481protected virtual void OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs e) { }
PresentationFramework (1)
System\Windows\Window.cs (1)
7015protected override void OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs e)