23 references to LostMouseCaptureEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1165public static readonly RoutedEvent LostMouseCaptureEvent = Mouse.LostMouseCaptureEvent.AddOwner(_typeofThis); 1172add { AddHandler(Mouse.LostMouseCaptureEvent, value, false); } 1173remove { RemoveHandler(Mouse.LostMouseCaptureEvent, value); }
System\Windows\Generated\UIElement.cs (4)
743EventManager.RegisterClassHandler(type, Mouse.LostMouseCaptureEvent, new MouseEventHandler(UIElement.OnLostMouseCaptureThunk), false); 3118public static readonly RoutedEvent LostMouseCaptureEvent = Mouse.LostMouseCaptureEvent.AddOwner(_typeofThis); 3125add { AddHandler(Mouse.LostMouseCaptureEvent, value, false); } 3126remove { RemoveHandler(Mouse.LostMouseCaptureEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
895public static readonly RoutedEvent LostMouseCaptureEvent = Mouse.LostMouseCaptureEvent.AddOwner(_typeofThis); 902add { AddHandler(Mouse.LostMouseCaptureEvent, value, false); } 903remove { RemoveHandler(Mouse.LostMouseCaptureEvent, value); }
System\Windows\Input\Mouse.cs (2)
353UIElement.AddHandler(element, LostMouseCaptureEvent, handler); 363UIElement.RemoveHandler(element, LostMouseCaptureEvent, handler);
System\Windows\Input\MouseDevice.cs (1)
1126RoutedEvent = Mouse.LostMouseCaptureEvent,
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (1)
330if (e.StagingItem.Input.RoutedEvent == Mouse.LostMouseCaptureEvent ||
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
1148if (e.StagingItem.Input.RoutedEvent == Mouse.LostMouseCaptureEvent ||
PresentationFramework (5)
System\Windows\Controls\ComboBox.cs (1)
47EventManager.RegisterClassHandler(typeof(ComboBox), Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCapture));
System\Windows\Controls\Primitives\MenuBase.cs (1)
47EventManager.RegisterClassHandler(typeof(MenuBase), Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCapture));
System\Windows\Controls\Primitives\Popup.cs (2)
48EventManager.RegisterClassHandler(typeof(Popup), Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCapture)); 1374e.RoutedEvent != Mouse.LostMouseCaptureEvent;
System\Windows\Controls\Primitives\Thumb.cs (1)
43EventManager.RegisterClassHandler(typeof(Thumb), Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCapture));
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (1)
98EventManager.RegisterClassHandler(ownerType, Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCaptureThunk));
Microsoft\Windows\Controls\Ribbon\RibbonGroup.cs (1)
74EventManager.RegisterClassHandler(ownerType, Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCaptureThunk), true /* handledEventsToo */);
Microsoft\Windows\Controls\Ribbon\RibbonQuickAccessToolBar.cs (1)
112EventManager.RegisterClassHandler(ownerType, Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCaptureThunk), true /* handledEventsToo */);