23 references to LostMouseCaptureEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1177public static readonly RoutedEvent LostMouseCaptureEvent = Mouse.LostMouseCaptureEvent.AddOwner(_typeofThis); 1184add { AddHandler(Mouse.LostMouseCaptureEvent, value, false); } 1185remove { RemoveHandler(Mouse.LostMouseCaptureEvent, value); }
System\Windows\Generated\UIElement.cs (4)
755EventManager.RegisterClassHandler(type, Mouse.LostMouseCaptureEvent, new MouseEventHandler(UIElement.OnLostMouseCaptureThunk), false); 3130public static readonly RoutedEvent LostMouseCaptureEvent = Mouse.LostMouseCaptureEvent.AddOwner(_typeofThis); 3137add { AddHandler(Mouse.LostMouseCaptureEvent, value, false); } 3138remove { RemoveHandler(Mouse.LostMouseCaptureEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
896public static readonly RoutedEvent LostMouseCaptureEvent = Mouse.LostMouseCaptureEvent.AddOwner(_typeofThis); 903add { AddHandler(Mouse.LostMouseCaptureEvent, value, false); } 904remove { RemoveHandler(Mouse.LostMouseCaptureEvent, value); }
System\Windows\Input\Mouse.cs (2)
354UIElement.AddHandler(element, LostMouseCaptureEvent, handler); 364UIElement.RemoveHandler(element, LostMouseCaptureEvent, handler);
System\Windows\Input\MouseDevice.cs (1)
1127lostCapture.RoutedEvent=Mouse.LostMouseCaptureEvent;
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (1)
329if (e.StagingItem.Input.RoutedEvent == Mouse.LostMouseCaptureEvent ||
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
1140if (e.StagingItem.Input.RoutedEvent == Mouse.LostMouseCaptureEvent ||
PresentationFramework (5)
System\Windows\Controls\ComboBox.cs (1)
48EventManager.RegisterClassHandler(typeof(ComboBox), Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCapture));
System\Windows\Controls\Primitives\MenuBase.cs (1)
48EventManager.RegisterClassHandler(typeof(MenuBase), Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCapture));
System\Windows\Controls\Primitives\Popup.cs (2)
53EventManager.RegisterClassHandler(typeof(Popup), Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCapture)); 1362e.RoutedEvent != Mouse.LostMouseCaptureEvent;
System\Windows\Controls\Primitives\Thumb.cs (1)
44EventManager.RegisterClassHandler(typeof(Thumb), Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCapture));
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (1)
99EventManager.RegisterClassHandler(ownerType, Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCaptureThunk));
Microsoft\Windows\Controls\Ribbon\RibbonGroup.cs (1)
75EventManager.RegisterClassHandler(ownerType, Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCaptureThunk), true /* handledEventsToo */);
Microsoft\Windows\Controls\Ribbon\RibbonQuickAccessToolBar.cs (1)
113EventManager.RegisterClassHandler(ownerType, Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCaptureThunk), true /* handledEventsToo */);