19 references to QueryCursorEvent
PresentationCore (14)
System\Windows\Generated\ContentElement.cs (3)
1200public static readonly RoutedEvent QueryCursorEvent = Mouse.QueryCursorEvent.AddOwner(_typeofThis); 1207add { AddHandler(Mouse.QueryCursorEvent, value, false); } 1208remove { RemoveHandler(Mouse.QueryCursorEvent, value); }
System\Windows\Generated\UIElement.cs (4)
760EventManager.RegisterClassHandler(type, Mouse.QueryCursorEvent, new QueryCursorEventHandler(UIElement.OnQueryCursorThunk), false); 3153public static readonly RoutedEvent QueryCursorEvent = Mouse.QueryCursorEvent.AddOwner(_typeofThis); 3160add { AddHandler(Mouse.QueryCursorEvent, value, false); } 3161remove { RemoveHandler(Mouse.QueryCursorEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
921public static readonly RoutedEvent QueryCursorEvent = Mouse.QueryCursorEvent.AddOwner(_typeofThis); 928add { AddHandler(Mouse.QueryCursorEvent, value, false); } 929remove { 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)
948queryCursor.RoutedEvent=Mouse.QueryCursorEvent; 1874if (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)
2388EventManager.RegisterClassHandler(_typeofThis, Mouse.QueryCursorEvent, new QueryCursorEventHandler(FrameworkElement.OnQueryCursorOverride), true);