22 references to KeyUpEvent
PresentationCore (19)
MS\Internal\SynchronizedInputHelper.cs (2)
45
return (re == Keyboard.
KeyUpEvent
||
269
e = new RoutedEvent[] {Keyboard.
KeyUpEvent
};
System\Windows\Generated\ContentElement.cs (3)
1678
public static readonly RoutedEvent KeyUpEvent = Keyboard.
KeyUpEvent
.AddOwner(_typeofThis);
1685
add { AddHandler(Keyboard.
KeyUpEvent
, value, false); }
1686
remove { RemoveHandler(Keyboard.
KeyUpEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
770
EventManager.RegisterClassHandler(type, Keyboard.
KeyUpEvent
, new KeyEventHandler(UIElement.OnKeyUpThunk), false);
3631
public static readonly RoutedEvent KeyUpEvent = Keyboard.
KeyUpEvent
.AddOwner(_typeofThis);
3638
add { AddHandler(Keyboard.
KeyUpEvent
, value, false); }
3639
remove { RemoveHandler(Keyboard.
KeyUpEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1408
public static readonly RoutedEvent KeyUpEvent = Keyboard.
KeyUpEvent
.AddOwner(_typeofThis);
1415
add { AddHandler(Keyboard.
KeyUpEvent
, value, false); }
1416
remove { RemoveHandler(Keyboard.
KeyUpEvent
, value); }
System\Windows\Input\Command\CommandDevice.cs (1)
107
else if (e.StagingItem.Input.RoutedEvent == Keyboard.
KeyUpEvent
||
System\Windows\Input\Keyboard.cs (2)
103
UIElement.AddHandler(element,
KeyUpEvent
, handler);
113
UIElement.RemoveHandler(element,
KeyUpEvent
, handler);
System\Windows\Input\KeyboardDevice.cs (1)
894
keyUp.RoutedEvent=Keyboard.
KeyUpEvent
;
System\Windows\Input\TextCompositionManager.cs (1)
486
if (e.StagingItem.Input.RoutedEvent == Keyboard.
KeyUpEvent
)
System\Windows\Input\TextServicesManager.cs (1)
202
e.StagingItem.Input.RoutedEvent == Keyboard.
KeyUpEvent
)
System\Windows\InterOp\HwndSource.cs (1)
2352
keyEvent = Keyboard.
KeyUpEvent
;
PresentationFramework (3)
System\Windows\Controls\PopupControlService.cs (1)
109
else if (e.StagingItem.Input.RoutedEvent == Keyboard.
KeyUpEvent
)
System\windows\Documents\TextEditorTyping.cs (1)
56
EventManager.RegisterClassHandler(controlType, Keyboard.
KeyUpEvent
, new KeyEventHandler(OnKeyUp));
System\Windows\Input\KeyboardNavigation.cs (1)
3192
else if (inputEventArgs.RoutedEvent == Keyboard.
KeyUpEvent
)