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