23 references to LostMouseCaptureEvent
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (3)
1183public static readonly RoutedEvent LostMouseCaptureEvent = Mouse.LostMouseCaptureEvent.AddOwner(_typeofThis); 1190add { AddHandler(Mouse.LostMouseCaptureEvent, value, false); } 1191remove { RemoveHandler(Mouse.LostMouseCaptureEvent, value); }
System\Windows\Generated\UIElement.cs (4)
761EventManager.RegisterClassHandler(type, Mouse.LostMouseCaptureEvent, new MouseEventHandler(UIElement.OnLostMouseCaptureThunk), false); 3136public static readonly RoutedEvent LostMouseCaptureEvent = Mouse.LostMouseCaptureEvent.AddOwner(_typeofThis); 3143add { AddHandler(Mouse.LostMouseCaptureEvent, value, false); } 3144remove { RemoveHandler(Mouse.LostMouseCaptureEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
904public static readonly RoutedEvent LostMouseCaptureEvent = Mouse.LostMouseCaptureEvent.AddOwner(_typeofThis); 911add { AddHandler(Mouse.LostMouseCaptureEvent, value, false); } 912remove { RemoveHandler(Mouse.LostMouseCaptureEvent, value); }
System\Windows\Input\Mouse.cs (2)
362UIElement.AddHandler(element, LostMouseCaptureEvent, handler); 372UIElement.RemoveHandler(element, LostMouseCaptureEvent, handler);
System\Windows\Input\MouseDevice.cs (1)
1159lostCapture.RoutedEvent=Mouse.LostMouseCaptureEvent;
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (1)
346if (e.StagingItem.Input.RoutedEvent == Mouse.LostMouseCaptureEvent ||
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
1149if (e.StagingItem.Input.RoutedEvent == Mouse.LostMouseCaptureEvent ||
PresentationFramework (5)
System\Windows\Controls\ComboBox.cs (1)
58EventManager.RegisterClassHandler(typeof(ComboBox), Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCapture));
System\Windows\Controls\Primitives\MenuBase.cs (1)
57EventManager.RegisterClassHandler(typeof(MenuBase), Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCapture));
System\Windows\Controls\Primitives\Popup.cs (2)
60EventManager.RegisterClassHandler(typeof(Popup), Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCapture)); 1369e.RoutedEvent != Mouse.LostMouseCaptureEvent;
System\Windows\Controls\Primitives\Thumb.cs (1)
58EventManager.RegisterClassHandler(typeof(Thumb), Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCapture));
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (1)
102EventManager.RegisterClassHandler(ownerType, Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCaptureThunk));
Microsoft\Windows\Controls\Ribbon\RibbonGroup.cs (1)
78EventManager.RegisterClassHandler(ownerType, Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCaptureThunk), true /* handledEventsToo */);
Microsoft\Windows\Controls\Ribbon\RibbonQuickAccessToolBar.cs (1)
118EventManager.RegisterClassHandler(ownerType, Mouse.LostMouseCaptureEvent, new MouseEventHandler(OnLostMouseCaptureThunk), true /* handledEventsToo */);