38 references to Tunnel
PresentationCore (37)
System\Windows\DragDrop.cs (6)
50
public static readonly RoutedEvent PreviewQueryContinueDragEvent = EventManager.RegisterRoutedEvent("PreviewQueryContinueDrag", RoutingStrategy.
Tunnel
, typeof(QueryContinueDragEventHandler), typeof(DragDrop));
100
public static readonly RoutedEvent PreviewGiveFeedbackEvent = EventManager.RegisterRoutedEvent("PreviewGiveFeedback", RoutingStrategy.
Tunnel
, typeof(GiveFeedbackEventHandler), typeof(DragDrop));
150
public static readonly RoutedEvent PreviewDragEnterEvent = EventManager.RegisterRoutedEvent("PreviewDragEnter", RoutingStrategy.
Tunnel
, typeof(DragEventHandler), typeof(DragDrop));
200
public static readonly RoutedEvent PreviewDragOverEvent = EventManager.RegisterRoutedEvent("PreviewDragOver", RoutingStrategy.
Tunnel
, typeof(DragEventHandler), typeof(DragDrop));
250
public static readonly RoutedEvent PreviewDragLeaveEvent = EventManager.RegisterRoutedEvent("PreviewDragLeave", RoutingStrategy.
Tunnel
, typeof(DragEventHandler), typeof(DragDrop));
300
public static readonly RoutedEvent PreviewDropEvent = EventManager.RegisterRoutedEvent("PreviewDrop", RoutingStrategy.
Tunnel
, typeof(DragEventHandler), typeof(DragDrop));
System\Windows\EventManager.cs (1)
63
if (routingStrategy != RoutingStrategy.
Tunnel
&&
System\Windows\EventRoute.cs (1)
105
/// is <see cref="RoutingStrategy.
Tunnel
"/>,
System\Windows\Input\Command\CommandManager.cs (2)
49
RoutingStrategy.
Tunnel
,
119
RoutingStrategy.
Tunnel
,
System\Windows\Input\InputManager.cs (1)
30
internal static readonly RoutedEvent PreviewInputReportEvent = GlobalEventManager.RegisterRoutedEvent("PreviewInputReport", RoutingStrategy.
Tunnel
, typeof(InputReportEventHandler), typeof(InputManager));
System\Windows\Input\Keyboard.cs (5)
27
public static readonly RoutedEvent PreviewKeyDownEvent = EventManager.RegisterRoutedEvent("PreviewKeyDown", RoutingStrategy.
Tunnel
, typeof(KeyEventHandler), typeof(Keyboard));
77
public static readonly RoutedEvent PreviewKeyUpEvent = EventManager.RegisterRoutedEvent("PreviewKeyUp", RoutingStrategy.
Tunnel
, typeof(KeyEventHandler), typeof(Keyboard));
127
public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewGotKeyboardFocus", RoutingStrategy.
Tunnel
, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard));
152
public static readonly RoutedEvent PreviewKeyboardInputProviderAcquireFocusEvent = EventManager.RegisterRoutedEvent("PreviewKeyboardInputProviderAcquireFocus", RoutingStrategy.
Tunnel
, typeof(KeyboardInputProviderAcquireFocusEventHandler), typeof(Keyboard));
227
public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewLostKeyboardFocus", RoutingStrategy.
Tunnel
, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard));
System\Windows\Input\Mouse.cs (6)
28
public static readonly RoutedEvent PreviewMouseMoveEvent = EventManager.RegisterRoutedEvent("PreviewMouseMove", RoutingStrategy.
Tunnel
, typeof(MouseEventHandler), typeof(Mouse));
78
public static readonly RoutedEvent PreviewMouseDownOutsideCapturedElementEvent = EventManager.RegisterRoutedEvent("PreviewMouseDownOutsideCapturedElement", RoutingStrategy.
Tunnel
, typeof(MouseButtonEventHandler), typeof(Mouse));
103
public static readonly RoutedEvent PreviewMouseUpOutsideCapturedElementEvent = EventManager.RegisterRoutedEvent("PreviewMouseUpOutsideCapturedElement", RoutingStrategy.
Tunnel
, typeof(MouseButtonEventHandler), typeof(Mouse));
128
public static readonly RoutedEvent PreviewMouseDownEvent = EventManager.RegisterRoutedEvent("PreviewMouseDown", RoutingStrategy.
Tunnel
, typeof(MouseButtonEventHandler), typeof(Mouse));
178
public static readonly RoutedEvent PreviewMouseUpEvent = EventManager.RegisterRoutedEvent("PreviewMouseUp", RoutingStrategy.
Tunnel
, typeof(MouseButtonEventHandler), typeof(Mouse));
228
public static readonly RoutedEvent PreviewMouseWheelEvent = EventManager.RegisterRoutedEvent("PreviewMouseWheel", RoutingStrategy.
Tunnel
, typeof(MouseWheelEventHandler), typeof(Mouse));
System\Windows\Input\Stylus\Common\Stylus.cs (9)
23
public static readonly RoutedEvent PreviewStylusDownEvent = EventManager.RegisterRoutedEvent("PreviewStylusDown", RoutingStrategy.
Tunnel
, typeof(StylusDownEventHandler), typeof(Stylus));
73
public static readonly RoutedEvent PreviewStylusUpEvent = EventManager.RegisterRoutedEvent("PreviewStylusUp", RoutingStrategy.
Tunnel
, typeof(StylusEventHandler), typeof(Stylus));
123
public static readonly RoutedEvent PreviewStylusMoveEvent = EventManager.RegisterRoutedEvent("PreviewStylusMove", RoutingStrategy.
Tunnel
, typeof(StylusEventHandler), typeof(Stylus));
173
public static readonly RoutedEvent PreviewStylusInAirMoveEvent = EventManager.RegisterRoutedEvent("PreviewStylusInAirMove", RoutingStrategy.
Tunnel
, typeof(StylusEventHandler), typeof(Stylus));
273
public static readonly RoutedEvent PreviewStylusInRangeEvent = EventManager.RegisterRoutedEvent("PreviewStylusInRange", RoutingStrategy.
Tunnel
, typeof(StylusEventHandler), typeof(Stylus));
323
public static readonly RoutedEvent PreviewStylusOutOfRangeEvent = EventManager.RegisterRoutedEvent("PreviewStylusOutOfRange", RoutingStrategy.
Tunnel
, typeof(StylusEventHandler), typeof(Stylus));
373
public static readonly RoutedEvent PreviewStylusSystemGestureEvent = EventManager.RegisterRoutedEvent("PreviewStylusSystemGesture", RoutingStrategy.
Tunnel
, typeof(StylusSystemGestureEventHandler), typeof(Stylus));
525
public static readonly RoutedEvent PreviewStylusButtonDownEvent = EventManager.RegisterRoutedEvent("PreviewStylusButtonDown", RoutingStrategy.
Tunnel
, typeof(StylusButtonEventHandler), typeof(Stylus));
551
public static readonly RoutedEvent PreviewStylusButtonUpEvent = EventManager.RegisterRoutedEvent("PreviewStylusButtonUp", RoutingStrategy.
Tunnel
, typeof(StylusButtonEventHandler), typeof(Stylus));
System\Windows\Input\TextCompositionManager.cs (3)
54
public static readonly RoutedEvent PreviewTextInputStartEvent = EventManager.RegisterRoutedEvent("PreviewTextInputStart", RoutingStrategy.
Tunnel
, typeof(TextCompositionEventHandler), typeof(TextCompositionManager));
112
public static readonly RoutedEvent PreviewTextInputUpdateEvent = EventManager.RegisterRoutedEvent("PreviewTextInputUpdate", RoutingStrategy.
Tunnel
, typeof(TextCompositionEventHandler), typeof(TextCompositionManager));
170
public static readonly RoutedEvent PreviewTextInputEvent = EventManager.RegisterRoutedEvent("PreviewTextInput", RoutingStrategy.
Tunnel
, typeof(TextCompositionEventHandler), typeof(TextCompositionManager));
System\Windows\Input\Touch.cs (3)
16
internal static readonly RoutedEvent PreviewTouchDownEvent = EventManager.RegisterRoutedEvent("PreviewTouchDown", RoutingStrategy.
Tunnel
, typeof(EventHandler<TouchEventArgs>), typeof(Touch));
19
internal static readonly RoutedEvent PreviewTouchMoveEvent = EventManager.RegisterRoutedEvent("PreviewTouchMove", RoutingStrategy.
Tunnel
, typeof(EventHandler<TouchEventArgs>), typeof(Touch));
22
internal static readonly RoutedEvent PreviewTouchUpEvent = EventManager.RegisterRoutedEvent("PreviewTouchUp", RoutingStrategy.
Tunnel
, typeof(EventHandler<TouchEventArgs>), typeof(Touch));
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\KeyTipService.cs (1)
1570
public static readonly RoutedEvent PreviewKeyTipAccessedEvent = EventManager.RegisterRoutedEvent("PreviewKeyTipAccessed", RoutingStrategy.
Tunnel
, typeof(KeyTipAccessedEventHandler), typeof(KeyTipService));