'Declaration
Public Event TextBoxKeyUp As EventHandler(Of KeyEventArgs)
public event EventHandler<KeyEventArgs> TextBoxKeyUp
Event Data
The event handler receives an argument of type KeyEventArgs containing data related to this event. The following KeyEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Handled | |
Key | |
OriginalSource | (Inherited from System.Windows.RoutedEventArgs) |
PlatformKeyCode |
See Also