1 instantiation of ManipulationBoundaryFeedbackEventArgs
PresentationCore (1)
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (1)
383PushEvent(new ManipulationBoundaryFeedbackEventArgs(_manipulationDevice, LastTimestamp, _currentContainer, unusedManipulation));
9 references to ManipulationBoundaryFeedbackEventArgs
PresentationCore (8)
Core\CSharp\System\Windows\Input\Manipulation.cs (1)
26internal 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)
493ManipulationBoundaryFeedbackEventArgs boundaryEventArgs = inputEventArgs as ManipulationBoundaryFeedbackEventArgs;
Core\CSharp\System\Windows\UIElement.cs (4)
110EventManager.RegisterClassHandler(typeof(UIElement), ManipulationBoundaryFeedbackEvent, new EventHandler<ManipulationBoundaryFeedbackEventArgs>(OnManipulationBoundaryFeedbackThunk)); 4531public event EventHandler<ManipulationBoundaryFeedbackEventArgs> ManipulationBoundaryFeedback 4537private static void OnManipulationBoundaryFeedbackThunk(object sender, ManipulationBoundaryFeedbackEventArgs e) 4545protected virtual void OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs e) { }
PresentationFramework (1)
src\Framework\System\Windows\Window.cs (1)
7374protected override void OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs e)