19 references to QueryCursorEvent
PresentationCore (14)
System\Windows\Generated\ContentElement.cs (3)
1202public static readonly RoutedEvent QueryCursorEvent = Mouse.QueryCursorEvent.AddOwner(_typeofThis); 1209add { AddHandler(Mouse.QueryCursorEvent, value, false); } 1210remove { RemoveHandler(Mouse.QueryCursorEvent, value); }
System\Windows\Generated\UIElement.cs (4)
762EventManager.RegisterClassHandler(type, Mouse.QueryCursorEvent, new QueryCursorEventHandler(UIElement.OnQueryCursorThunk), false); 3155public static readonly RoutedEvent QueryCursorEvent = Mouse.QueryCursorEvent.AddOwner(_typeofThis); 3162add { AddHandler(Mouse.QueryCursorEvent, value, false); } 3163remove { RemoveHandler(Mouse.QueryCursorEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
923public static readonly RoutedEvent QueryCursorEvent = Mouse.QueryCursorEvent.AddOwner(_typeofThis); 930add { AddHandler(Mouse.QueryCursorEvent, value, false); } 931remove { RemoveHandler(Mouse.QueryCursorEvent, value); }
System\Windows\Input\Mouse.cs (2)
387UIElement.AddHandler(element, QueryCursorEvent, handler); 397UIElement.RemoveHandler(element, QueryCursorEvent, handler);
System\Windows\Input\MouseDevice.cs (2)
971queryCursor.RoutedEvent=Mouse.QueryCursorEvent; 1897if (e.StagingItem.Input.RoutedEvent == Mouse.QueryCursorEvent)
PresentationFramework (5)
System\Windows\Controls\InkCanvas.cs (1)
81EventManager.RegisterClassHandler(ownerType, Mouse.QueryCursorEvent,
System\Windows\Documents\Hyperlink.cs (1)
52EventManager.RegisterClassHandler(typeof(Hyperlink), Mouse.QueryCursorEvent, new QueryCursorEventHandler(OnQueryCursor));
System\windows\Documents\TextEditorMouse.cs (1)
51EventManager.RegisterClassHandler(controlType, Mouse.QueryCursorEvent, new QueryCursorEventHandler(OnQueryCursor));
System\Windows\FrameworkContentElement.cs (1)
99EventManager.RegisterClassHandler(typeof(FrameworkContentElement), Mouse.QueryCursorEvent, new QueryCursorEventHandler(FrameworkContentElement.OnQueryCursor), true);
System\Windows\FrameworkElement.cs (1)
2381EventManager.RegisterClassHandler(_typeofThis, Mouse.QueryCursorEvent, new QueryCursorEventHandler(FrameworkElement.OnQueryCursorOverride), true);