19 references to QueryCursorEvent
PresentationCore (14)
System\Windows\Generated\ContentElement.cs (3)
1196public static readonly RoutedEvent QueryCursorEvent = Mouse.QueryCursorEvent.AddOwner(_typeofThis); 1203add { AddHandler(Mouse.QueryCursorEvent, value, false); } 1204remove { RemoveHandler(Mouse.QueryCursorEvent, value); }
System\Windows\Generated\UIElement.cs (4)
756EventManager.RegisterClassHandler(type, Mouse.QueryCursorEvent, new QueryCursorEventHandler(UIElement.OnQueryCursorThunk), false); 3149public static readonly RoutedEvent QueryCursorEvent = Mouse.QueryCursorEvent.AddOwner(_typeofThis); 3156add { AddHandler(Mouse.QueryCursorEvent, value, false); } 3157remove { RemoveHandler(Mouse.QueryCursorEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
915public static readonly RoutedEvent QueryCursorEvent = Mouse.QueryCursorEvent.AddOwner(_typeofThis); 922add { AddHandler(Mouse.QueryCursorEvent, value, false); } 923remove { RemoveHandler(Mouse.QueryCursorEvent, value); }
System\Windows\Input\Mouse.cs (2)
379UIElement.AddHandler(element, QueryCursorEvent, handler); 389UIElement.RemoveHandler(element, QueryCursorEvent, handler);
System\Windows\Input\MouseDevice.cs (2)
939queryCursor.RoutedEvent=Mouse.QueryCursorEvent; 1865if (e.StagingItem.Input.RoutedEvent == Mouse.QueryCursorEvent)
PresentationFramework (5)
System\Windows\Controls\InkCanvas.cs (1)
69EventManager.RegisterClassHandler(ownerType, Mouse.QueryCursorEvent,
System\Windows\Documents\Hyperlink.cs (1)
46EventManager.RegisterClassHandler(typeof(Hyperlink), Mouse.QueryCursorEvent, new QueryCursorEventHandler(OnQueryCursor));
System\windows\Documents\TextEditorMouse.cs (1)
37EventManager.RegisterClassHandler(controlType, Mouse.QueryCursorEvent, new QueryCursorEventHandler(OnQueryCursor));
System\Windows\FrameworkContentElement.cs (1)
87EventManager.RegisterClassHandler(typeof(FrameworkContentElement), Mouse.QueryCursorEvent, new QueryCursorEventHandler(FrameworkContentElement.OnQueryCursor), true);
System\Windows\FrameworkElement.cs (1)
2377EventManager.RegisterClassHandler(_typeofThis, Mouse.QueryCursorEvent, new QueryCursorEventHandler(FrameworkElement.OnQueryCursorOverride), true);