1 instantiation of ManipulationBoundaryFeedbackEventArgs
PresentationCore (1)
System\Windows\Input\ManipulationLogic.cs (1)
344PushEvent(new ManipulationBoundaryFeedbackEventArgs(_manipulationDevice, LastTimestamp, _currentContainer, unusedManipulation));
9 references to ManipulationBoundaryFeedbackEventArgs
PresentationCore (8)
System\Windows\Input\Manipulation.cs (1)
27internal 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)
442ManipulationBoundaryFeedbackEventArgs boundaryEventArgs = inputEventArgs as ManipulationBoundaryFeedbackEventArgs;
System\Windows\UIElement.cs (4)
103EventManager.RegisterClassHandler(typeof(UIElement), ManipulationBoundaryFeedbackEvent, new EventHandler<ManipulationBoundaryFeedbackEventArgs>(OnManipulationBoundaryFeedbackThunk)); 4488public event EventHandler<ManipulationBoundaryFeedbackEventArgs> ManipulationBoundaryFeedback 4494private static void OnManipulationBoundaryFeedbackThunk(object sender, ManipulationBoundaryFeedbackEventArgs e) 4502protected virtual void OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs e) { }
PresentationFramework (1)
System\Windows\Window.cs (1)
7050protected override void OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs e)