28 references to Tunnel
PresentationCore (28)
Core\CSharp\System\Windows\DragDrop.cs (6)
55
public static readonly RoutedEvent PreviewQueryContinueDragEvent = EventManager.RegisterRoutedEvent("PreviewQueryContinueDrag", RoutingStrategy.
Tunnel
, typeof(QueryContinueDragEventHandler), typeof(DragDrop));
105
public static readonly RoutedEvent PreviewGiveFeedbackEvent = EventManager.RegisterRoutedEvent("PreviewGiveFeedback", RoutingStrategy.
Tunnel
, typeof(GiveFeedbackEventHandler), typeof(DragDrop));
155
public static readonly RoutedEvent PreviewDragEnterEvent = EventManager.RegisterRoutedEvent("PreviewDragEnter", RoutingStrategy.
Tunnel
, typeof(DragEventHandler), typeof(DragDrop));
205
public static readonly RoutedEvent PreviewDragOverEvent = EventManager.RegisterRoutedEvent("PreviewDragOver", RoutingStrategy.
Tunnel
, typeof(DragEventHandler), typeof(DragDrop));
255
public static readonly RoutedEvent PreviewDragLeaveEvent = EventManager.RegisterRoutedEvent("PreviewDragLeave", RoutingStrategy.
Tunnel
, typeof(DragEventHandler), typeof(DragDrop));
305
public static readonly RoutedEvent PreviewDropEvent = EventManager.RegisterRoutedEvent("PreviewDrop", RoutingStrategy.
Tunnel
, typeof(DragEventHandler), typeof(DragDrop));
Core\CSharp\System\Windows\EventManager.cs (1)
65
if (routingStrategy != RoutingStrategy.
Tunnel
&&
Core\CSharp\System\Windows\EventRoute.cs (1)
110
/// is <see cref="RoutingStrategy.
Tunnel
"/>,
Core\CSharp\System\Windows\Input\Command\CommandManager.cs (2)
50
RoutingStrategy.
Tunnel
,
144
RoutingStrategy.
Tunnel
,
Core\CSharp\System\Windows\Input\InputManager.cs (1)
29
internal static readonly RoutedEvent PreviewInputReportEvent = GlobalEventManager.RegisterRoutedEvent("PreviewInputReport", RoutingStrategy.
Tunnel
, typeof(InputReportEventHandler), typeof(InputManager));
Core\CSharp\System\Windows\Input\Keyboard.cs (5)
24
public static readonly RoutedEvent PreviewKeyDownEvent = EventManager.RegisterRoutedEvent("PreviewKeyDown", RoutingStrategy.
Tunnel
, typeof(KeyEventHandler), typeof(Keyboard));
74
public static readonly RoutedEvent PreviewKeyUpEvent = EventManager.RegisterRoutedEvent("PreviewKeyUp", RoutingStrategy.
Tunnel
, typeof(KeyEventHandler), typeof(Keyboard));
124
public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewGotKeyboardFocus", RoutingStrategy.
Tunnel
, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard));
149
public static readonly RoutedEvent PreviewKeyboardInputProviderAcquireFocusEvent = EventManager.RegisterRoutedEvent("PreviewKeyboardInputProviderAcquireFocus", RoutingStrategy.
Tunnel
, typeof(KeyboardInputProviderAcquireFocusEventHandler), typeof(Keyboard));
224
public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewLostKeyboardFocus", RoutingStrategy.
Tunnel
, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard));
Core\CSharp\System\Windows\Input\Mouse.cs (6)
25
public static readonly RoutedEvent PreviewMouseMoveEvent = EventManager.RegisterRoutedEvent("PreviewMouseMove", RoutingStrategy.
Tunnel
, typeof(MouseEventHandler), typeof(Mouse));
75
public static readonly RoutedEvent PreviewMouseDownOutsideCapturedElementEvent = EventManager.RegisterRoutedEvent("PreviewMouseDownOutsideCapturedElement", RoutingStrategy.
Tunnel
, typeof(MouseButtonEventHandler), typeof(Mouse));
100
public static readonly RoutedEvent PreviewMouseUpOutsideCapturedElementEvent = EventManager.RegisterRoutedEvent("PreviewMouseUpOutsideCapturedElement", RoutingStrategy.
Tunnel
, typeof(MouseButtonEventHandler), typeof(Mouse));
125
public static readonly RoutedEvent PreviewMouseDownEvent = EventManager.RegisterRoutedEvent("PreviewMouseDown", RoutingStrategy.
Tunnel
, typeof(MouseButtonEventHandler), typeof(Mouse));
175
public static readonly RoutedEvent PreviewMouseUpEvent = EventManager.RegisterRoutedEvent("PreviewMouseUp", RoutingStrategy.
Tunnel
, typeof(MouseButtonEventHandler), typeof(Mouse));
225
public static readonly RoutedEvent PreviewMouseWheelEvent = EventManager.RegisterRoutedEvent("PreviewMouseWheel", RoutingStrategy.
Tunnel
, typeof(MouseWheelEventHandler), typeof(Mouse));
Core\CSharp\System\Windows\Input\TextCompositionManager.cs (3)
60
public static readonly RoutedEvent PreviewTextInputStartEvent = EventManager.RegisterRoutedEvent("PreviewTextInputStart", RoutingStrategy.
Tunnel
, typeof(TextCompositionEventHandler), typeof(TextCompositionManager));
130
public static readonly RoutedEvent PreviewTextInputUpdateEvent = EventManager.RegisterRoutedEvent("PreviewTextInputUpdate", RoutingStrategy.
Tunnel
, typeof(TextCompositionEventHandler), typeof(TextCompositionManager));
200
public static readonly RoutedEvent PreviewTextInputEvent = EventManager.RegisterRoutedEvent("PreviewTextInput", RoutingStrategy.
Tunnel
, typeof(TextCompositionEventHandler), typeof(TextCompositionManager));
Core\CSharp\System\Windows\Input\Touch.cs (3)
15
internal static readonly RoutedEvent PreviewTouchDownEvent = EventManager.RegisterRoutedEvent("PreviewTouchDown", RoutingStrategy.
Tunnel
, typeof(EventHandler<TouchEventArgs>), typeof(Touch));
18
internal static readonly RoutedEvent PreviewTouchMoveEvent = EventManager.RegisterRoutedEvent("PreviewTouchMove", RoutingStrategy.
Tunnel
, typeof(EventHandler<TouchEventArgs>), typeof(Touch));
21
internal static readonly RoutedEvent PreviewTouchUpEvent = EventManager.RegisterRoutedEvent("PreviewTouchUp", RoutingStrategy.
Tunnel
, typeof(EventHandler<TouchEventArgs>), typeof(Touch));